Making sure not to break OS X

This commit is contained in:
Torgny Bjers 2014-04-12 01:05:00 -04:00
commit 727a0966ff

View file

@ -3,7 +3,9 @@
#
# ls, the common ones I use a lot shortened for rapid fire usage
alias ls='ls --color' #I like color
if [[ `uname` != 'Darwin' ]]; then
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