mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:49:03 -08:00
12 lines
197 B
Text
12 lines
197 B
Text
|
#!/usr/bin/sh
|
||
|
# YES_ZSH
|
||
|
|
||
|
ify() {
|
||
|
[ $# -ge 2 ] || { printf "%s\n" "$0: too few arguments" >&2; return 1; }
|
||
|
local ex="$1"
|
||
|
shift
|
||
|
"$@" | "$ex"
|
||
|
}
|
||
|
|
||
|
[ "${SOURCING:-0}" -gt 0 ] || ify "$@"
|