Skip to content

Instantly share code, notes, and snippets.

View notTag's full-sized avatar

notTag

  • Earth
View GitHub Profile
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"
Process for setting up github pages with namecheap domain.
1. Go to namecheap.com, select and buy domain name.
2. Login to namecheap, go to username drop down and select dashboard.
3. Go to DomainList
4. Click manage button
5. Click Advanced DNS tab
6. Click add record and add three records:
Type: A Record | Host: @ | Value: 192.30.252.153 | TTL: Automatic
@notTag
notTag / Terminal Customization.md
Last active April 1, 2017 18:19
Terminal Customization (friday night)

Terminal

  • To change the terminals prompt:
    1. nano ~/.bash_profile
    2. export PS1="yourFancyPromptName\t " Displays as: yourFancyPromptName01:25:53
    3. Customization flags: "\d" – Current date "\t" – Current time