1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00
rc/sh/wat

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env zsh
# YES_ZSH
# NO_BASH
# NO_DASH
2021-09-23 06:48:05 -07:00
# NO_ASH
2021-07-29 00:37:35 -07:00
# wat - a better and recursive which/whence
# via: https://leahneukirchen.org/dotfiles/tools.html
wat() { ### @-
2021-08-01 09:27:25 -07:00
### wat — a better and recursive which/whence. for zsh only.
###
### written by [leah2.](https://leahneukirchen.org/)
2021-07-29 00:37:35 -07:00
( # constrain unalias
local cmd=
2021-07-29 00:37:35 -07:00
for cmd; do
if (( $+aliases[$cmd] )); then
printf '%s: aliased to %s\n' $cmd $aliases[$cmd]
local -a words=(${${(z)aliases[$cmd]}:#(*=*|rlwrap|nocorrect|noglob|command)})
2021-07-29 00:37:35 -07:00
unalias $cmd
if [[ $words[1] == '\'* ]]; then
words[1]=${words[1]#'\'}
unalias $words[1] 2>/dev/null
fi
wat $words[1]
elif (( $+functions[$cmd] )); then
whence -v $cmd
whence -f $cmd
elif (( $+commands[$cmd] )); then
wat $commands[$cmd]
elif [[ -h $cmd ]]; then
file $cmd
wat $cmd:A
elif [[ -x $cmd ]]; then
file $cmd
else
which $cmd
fi
done
)
}
[ -n "${preload+-}" ] || wat "$@"