reduce to one line, per the oh-my-zsh guys... merged or not i use this

This commit is contained in:
Matt Parnell 2011-10-20 21:25:37 -05:00
commit b5776b6716

View file

@ -1,4 +1,4 @@
# These three lines of simple code originally by ilikenwf/Matt Parnell
# This line of simple code originally by ilikenwf/Matt Parnell
# simply import the ~/.aliases file if it exists when the plugin is
# enabled.
@ -14,6 +14,4 @@
# alias tunnel="ssh -D 3290 user@host.com"
# alias vnc="vncviewer -compresslevel 0 -q 0 localhost:2985"
if [ -f ~/.aliases ] ; then
source ~/.aliases
fi
[[ -f ~/.aliases ]] && . ~/.aliases