[zsh] Fiddling with IO redirection

This commit is contained in:
Eryn Wells 2022-05-26 09:11:35 -07:00
parent c3be112691
commit 97c1b8ad30

View file

@ -2,7 +2,7 @@
# Eryn Wells <eryn@erynwells.me>
for func in ${(P)${1}}; do
if autoload -Uz $func &>-; then
if autoload -Uz $func &> -; then
$func
fi
done