1
0
mirror of https://github.com/wting/autojump synced 2025-06-10 03:14:09 +00:00
wting_autojump/bin/autojump.sh

35 lines
989 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
2019-11-30 19:12:01 +00:00
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
shell="bash"
elif [ -n "${ZSH_NAME}" ]; then
2019-11-30 19:12:01 +00:00
SCRIPT_DIR="${0:a:h}"
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}
2019-11-21 18:21:13 +00:00
else
2019-11-30 19:12:01 +00:00
if [ -s "$SCRIPT_DIR/autojump.${shell}" ]; then
source "$SCRIPT_DIR/autojump.${shell}"
else
echo "ERROR: autojump not found"
fi
2009-02-10 12:54:10 +00:00
fi