Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > f648f2718d8399cc5ef67e5d7da6577c > files > 3

autojump-21.7.1-3.mga5.noarch.rpm

# source autojump on BASH or ZSH depending on the shell

shell=`echo ${SHELL} | awk -F/ '{ print $NF }'`

# prevent circular loop for sh shells
if [ "${shell}" = "sh" ]; then
	return 0

# check local install
elif [ -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 destdir_install/autojump.${shell} ]; then
	source destdir_install/autojump.${shell}

fi