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

15 lines
629 B
Bash
Raw Normal View History

2009-03-30 07:34:24 +00:00
# Source autojump on BASH or ZSH depending on the shell
2009-03-03 11:09:36 +00:00
if [ "$BASH_VERSION" ] && [ -n "$PS1" ] && echo $SHELLOPTS | grep -v posix >>/dev/null; then
2012-02-08 21:27:43 +00:00
if [ -f ~/.autojump/etc/profile.d/autojump.bash ]; then
source ~/.autojump/etc/profile.d/autojump.bash
elif [ -f /etc/profile.d/autojump.bash ]; then
source /etc/profile.d/autojump.bash
fi
2009-03-30 07:34:24 +00:00
elif [ "$ZSH_VERSION" ] && [ -n "$PS1" ]; then
2012-02-08 21:27:43 +00:00
if [ -f ~/.autojump/etc/profile.d/autojump.zsh ]; then
source ~/.autojump/etc/profile.d/autojump.zsh
elif [ -f /etc/profile.d/autojump.zsh ]; then
source /etc/profile.d/autojump.zsh
fi
2009-02-10 12:54:10 +00:00
fi