Terminal
- To change the terminals prompt:
- nano ~/.bash_profile
- export PS1="yourFancyPromptName\t " Displays as: yourFancyPromptName01:25:53
- Customization flags: "\d" – Current date "\t" – Current time
| Creating a gist for all the terminal usage scenarios I come across as I come across them. | |
| Recursively search through current directory and all subdirectories | |
| find . -name "*.txt" | |
| OR if you want to use grep | |
| find . -print | grep -i "\.txt" |
| #---------------GitHub Pages + Namecheap Domain + SSL Cheat Sheet------------# | |
| NOTE: You do NOT need to buy PositiveSSL from Namecheap. | |
| GitHub Pages provides free SSL automatically via Let's Encrypt. | |
| # Namecheap Domain Setup | |
| Buy Domain | |
| Go to namecheap.com, select and buy domain name. | |
| Navigate to DNS Settings | |
| Login to Namecheap → Username dropdown → Dashboard |
Terminal