1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
wting_autojump/bin/autojump.sh
Felix Laurie von Massenbach 9dd1e0411c Install to /usr/local/share, not /etc/profile.d.
Stops all the scripts being loaded by all the shells.
Fix joelthelion/autojump#267.
2014-06-26 01:23:25 +01:00

18 lines
496 B
Bash

# 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
return 0
# check local install
elif [ -s ~/.autojump/usr/local/share/autojump/autojump.${shell} ]; then
source ~/.autojump/usr/local/share/autojump/autojump.${shell}
# check global install
elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then
source /usr/local/share/autojump/autojump.${shell}
fi