Commit 5809a472 authored by Calogero Lo Leggio's avatar Calogero Lo Leggio
Browse files

check if autojump is installed

parent 955825b1
if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package if [ $commands[autojump] ]; then # check if autojump is installed
. /usr/share/autojump/autojump.zsh if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation . /usr/share/autojump/autojump.zsh
. /etc/profile.d/autojump.zsh elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
elif (`command -v brew >/dev/null`); then # mac os x with brew . /etc/profile.d/autojump.zsh
if [ -f `brew --prefix`/etc/autojump ]; then elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump ]; then # mac os x with brew
. `brew --prefix`/etc/autojump . `brew --prefix`/etc/autojump
fi fi
fi fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment