Add shared aliases

This commit is contained in:
David Todd 2016-06-14 14:12:53 -05:00
parent f13b8c230f
commit dca9f18c57

15
shell/aliases Normal file
View File

@ -0,0 +1,15 @@
# Common Aliases
# These will be sourced into the main *sh config that's loaded
alias ls='ls -F -h --color=auto'
alias ll='ls -l'
alias la='ls -la'
alias l='ls -CF'
alias ld='ls -ld'
alias lo='ls -l | sed -e 's/--x/1/g' -e 's/-w-/2/g' -e 's/-wx/3/g' -e 's/r--/4/g' -e 's/r-x/5/g' -e 's/rw-/6/g' -e 's/rwx/7/g' -e 's/---/0/g''
alias back='cd $OLDPWD'
alias clkear='clear'
alias ckear='clear'
alias reload='source ~/.zshrc'
alias webshare='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"'
alias ipa='ip addr|grep inet'