which/SOURCES/which2.sh

29 lines
534 B
Bash
Raw Normal View History

2021-11-09 10:03:32 +00:00
# shellcheck shell=sh
# Initialization script for bash, sh, mksh and ksh
2019-05-07 11:23:34 +00:00
2022-05-10 07:18:10 +00:00
case "$(basename $(readlink /proc/$$/exe))" in
*ksh*)
which_declare=""
which_opt=""
;;
zsh)
which_declare="typeset -f"
which_opt=""
;;
bash|sh)
which_declare="declare -f"
which_opt="-f"
;;
*)
which_declare=""
which_opt=""
;;
esac
2021-11-09 10:03:32 +00:00
2022-05-10 07:18:10 +00:00
which () {
(alias; eval ${which_declare}) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@
2021-11-09 10:03:32 +00:00
}
export which_declare
export ${which_opt} which