1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
wting_autojump/bin/autojump.sh

22 lines
616 B
Bash
Raw Normal View History

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 }'`
# prevent circular loop for sh shells
if [ "${shell}" == "sh" ]; then
exit 0
2012-11-22 20:15:28 +00:00
# check local install
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}
# check custom install locations (modified by Homebrew or using --destdir option)
elif [ -s custom_install/autojump.${shell} ]; then
source custom_install/autojump.${shell}
2009-02-10 12:54:10 +00:00
fi