mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
8b13949173
custom installations.
18 lines
535 B
Bash
18 lines
535 B
Bash
# source autojump on BASH or ZSH depending on the shell
|
|
|
|
shell=`echo ${SHELL} | awk -F/ '{ print $NF }'`
|
|
|
|
# check local install
|
|
if [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
|
|
source ~/.autojump/etc/profile.d/autojump.${shell}
|
|
|
|
# check global install
|
|
elif [ -s /etc/profile.d/autojump.${shell} ]; then
|
|
source /etc/profile.d/autojump.${shell}
|
|
|
|
# check custom install locations (modified by Homebrew or using --destdir option)
|
|
elif [ -s custom_install/autojump.${shell} ]; then
|
|
source custom_install/autojump.${shell}
|
|
|
|
fi
|