This commit is contained in:
Dion Keetley 2014-05-18 14:42:24 +00:00
commit 85f215a02f

View file

@ -3,7 +3,11 @@
#
# ls, the common ones I use a lot shortened for rapid fire usage
alias ls='ls --color' #I like color
if [[ $(uname -s) == 'Darwin' ]]; then
alias ls='ls -G' # Mac OSX support
else
alias ls='ls --color' #I like color
fi
alias l='ls -lFh' #size,show type,human readable
alias la='ls -lAFh' #long list,show almost all,show type,human readable
alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable