Add 'll' alias for OS X.

This commit is contained in:
Scott Wallace 2015-01-29 10:04:38 +00:00
parent fbd308270b
commit cdc4cc0e9d

View file

@ -41,10 +41,11 @@ export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; histor
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
# Make OS X's 'top' behave like the GNU one # OS X aliases
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
if [ $(uname -s) = "Darwin" ]; then if [ $(uname -s) = "Darwin" ]; then
alias top='top -u' alias top='top -u'
alias ll='ls -lA'
fi fi
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------