You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wting_autojump/bin/autojump.sh

18 lines
443 B

12 years ago
# source autojump on BASH or ZSH depending on the shell
shell=$(echo ${SHELL} | awk -F/ '{ print $NF }')
12 years ago
# prevent circular loop for sh shells
11 years ago
if [ "${shell}" = "sh" ]; then
return 0
12 years ago
# check local install
elif [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
12 years ago
source ~/.autojump/etc/profile.d/autojump.${shell}
# check global install
elif [ -s /etc/profile.d/autojump.${shell} ]; then
source /etc/profile.d/autojump.${shell}
fi