1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00
rc/sh/ify
Connor Olding d5f3f14d72 merge compatibility lines
RIP meaningful last-modified dates
2024-03-26 15:08:14 -07:00

21 lines
539 B
Bash
Executable File

#!/usr/bin/sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
ify() { ### @-
### pipe one command through another, so you can still pass arguments to the former.
###
### this is mainly useful for aliases. 99% of the time you'll use this with `less`.
###
### ```
### $ alias ll="ify less ls -ACX --group-directories-first --color=force"
### $ ll /etc
### ```
[ $# -ge 2 ] || { printf "%s\n" "$0: too few arguments" >&2; return 1; }
local ex="$1"
shift
"$@" | "$ex"
}
[ -n "${preload+-}" ] || ify "$@"