#Useful Terminal Commands ###Random Color per log line tail -f syslog | while read -r line; do printf "\e[38;5;%dm%s\e[0m\n" $(($RANDOM%255)) "$line"; done;
#Helpful Git Commands
###Add to previous commit git commit --amend --reuse-message
###Change the commit message git commit --amend
###Stash Specific File git stash -p