1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
wting_autojump/bin/autojump.sh
Anderson Bravalheri 0cf50c3b45 Change "source" to "." in autojump.sh
This makes the file more POSIX-compliant, which is useful in some OSs
that link /bin/sh to secondary shells for performance improvements
while still using bash as the default shell

Reference: https://wiki.ubuntu.com/DashAsBinSh
2019-07-22 13:31:10 +01:00

27 lines
725 B
Bash

# 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
# prevent circular loop for sh shells
if [ "${shell}" = "sh" ]; then
return 0
# check local install
elif [ -s ~/.autojump/share/autojump/autojump.${shell} ]; then
. ~/.autojump/share/autojump/autojump.${shell}
# check global install
elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then
. /usr/local/share/autojump/autojump.${shell}
fi