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

27 lines
735 B
Bash
Raw Normal View History

# the login $SHELL isn't always the one used
# NOTE: problems might occur if /bin/sh is symlinked to /bin/bash
if [ -n "${BASH}" ]; then
shell="bash"
elif [ -n "${ZSH_NAME}" ]; then
shell="zsh"
elif [ -n "${__fish_datadir}" ]; then
shell="fish"
elif [ -n "${version}" ]; then
shell="tcsh"
else
shell=$(echo ${SHELL} | awk -F/ '{ print $NF }')
fi
2012-11-22 20:15:28 +00:00
# prevent circular loop for sh shells
2013-04-19 14:49:53 +00:00
if [ "${shell}" = "sh" ]; then
2015-01-25 07:04:36 +00:00
return 0
2012-11-22 20:15:28 +00:00
# check local install
elif [ -s ~/.autojump/share/autojump/autojump.${shell} ]; then
2015-01-25 07:04:36 +00:00
source ~/.autojump/share/autojump/autojump.${shell}
2012-11-22 20:15:28 +00:00
# check global install
elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then
2015-01-25 07:04:36 +00:00
source /usr/local/share/autojump/autojump.${shell}
2009-02-10 12:54:10 +00:00
fi