using alias instead export
This commit is contained in:
parent
9a3c865350
commit
53706aeb4c
21
which2.sh
21
which2.sh
@ -2,27 +2,12 @@
|
|||||||
# Initialization script for bash, sh, mksh and ksh
|
# Initialization script for bash, sh, mksh and ksh
|
||||||
|
|
||||||
case "$(basename $(readlink /proc/$$/exe))" in
|
case "$(basename $(readlink /proc/$$/exe))" in
|
||||||
*ksh*)
|
*ksh*|zsh)
|
||||||
which_declare=""
|
alias which='alias | /usr/bin/which --tty-only --read-alias --show-tilde --show-dot'
|
||||||
which_opt=""
|
|
||||||
;;
|
|
||||||
zsh)
|
|
||||||
which_declare="typeset -f"
|
|
||||||
which_opt=""
|
|
||||||
;;
|
;;
|
||||||
bash|sh)
|
bash|sh)
|
||||||
which_declare="declare -f"
|
alias which='(alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot'
|
||||||
which_opt="-f"
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
which_declare=""
|
|
||||||
which_opt=""
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
function which {
|
|
||||||
(alias; eval ${which_declare}) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@
|
|
||||||
}
|
|
||||||
|
|
||||||
export which_declare
|
|
||||||
export ${which_opt} which
|
|
||||||
|
Loading…
Reference in New Issue
Block a user