2012-11-22 20:15:28 +00:00
|
|
|
# source autojump on BASH or ZSH depending on the shell
|
|
|
|
|
|
|
|
shell=`echo ${SHELL} | awk -F/ '{ print $NF }'`
|
|
|
|
|
2013-04-18 21:43:43 +00:00
|
|
|
# prevent circular loop for sh shells
|
2013-04-19 14:49:53 +00:00
|
|
|
if [ "${shell}" = "sh" ]; then
|
|
|
|
return 0
|
2013-04-18 21:43:43 +00:00
|
|
|
|
2012-11-22 20:15:28 +00:00
|
|
|
# check local install
|
2013-04-18 21:43:43 +00:00
|
|
|
elif [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
|
2012-11-22 20:15:28 +00:00
|
|
|
source ~/.autojump/etc/profile.d/autojump.${shell}
|
|
|
|
|
|
|
|
# check global install
|
|
|
|
elif [ -s /etc/profile.d/autojump.${shell} ]; then
|
|
|
|
source /etc/profile.d/autojump.${shell}
|
|
|
|
|
2012-11-22 22:33:05 +00:00
|
|
|
# check custom install locations (modified by Homebrew or using --destdir option)
|
2013-04-25 00:05:56 +00:00
|
|
|
#custom# elif [ -s destdir_install/autojump.${shell} ]; then
|
|
|
|
#custom# source destdir_install/autojump.${shell}
|
2012-11-22 22:33:05 +00:00
|
|
|
|
2009-02-10 12:54:10 +00:00
|
|
|
fi
|