9 lines
142 B
Text
9 lines
142 B
Text
![]() |
#!/usr/bin/env zsh
|
||
|
# Eryn Wells <eryn@erynwells.me>
|
||
|
|
||
|
for func in ${(P)${1}}; do
|
||
|
if autoload -Uz $func &>-; then
|
||
|
$func
|
||
|
fi
|
||
|
done
|