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