1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-25 16:57:12 -07:00
rc/sh/ify

24 lines
545 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/sh
# YES_ZSH
# YES_BASH
# YES_DASH
2021-09-23 06:48:05 -07:00
# YES_ASH
2021-07-29 00:37:35 -07:00
2021-07-30 17:57:08 -07:00
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
### ```
2021-07-29 00:37:35 -07:00
[ $# -ge 2 ] || { printf "%s\n" "$0: too few arguments" >&2; return 1; }
local ex="$1"
shift
"$@" | "$ex"
}
[ -n "${preload+-}" ] || ify "$@"