Skip to content

Instantly share code, notes, and snippets.

@mike0004
Created September 14, 2014 23:16
Show Gist options
  • Save mike0004/bfcfa381874dcb9147a8 to your computer and use it in GitHub Desktop.
Save mike0004/bfcfa381874dcb9147a8 to your computer and use it in GitHub Desktop.
shellaliases
unalias -a ls
alias l="ls -lah"
alias ltr="ls -ltr"
alias psg="ps -efa|grep -i --color=AUTO"
alias psgc="ps -efa | cut -c1-200 | grep --color=AUTO -i "
alias ..="cd .."; alias ...="cd ../.."; alias ....="cd ../../..";
alias h="history"
alias hgrep="history | grep -i"
alias h10="history 10"
alias c="clear"
export PS1="\[\e[00;37m\]\n\h:\u: \w\n\\$\[\e[0m\] "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment