1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 18:17:11 -07:00
rc/sh/sv

24 lines
583 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
sv() { ### @-
### collect the lastmost value of every key.
### the field separator can be given as its sole argument.
###
### ```
### echo "this=that\nthem=those\nthis=cat" | sv =
### this=cat
### them=those
### ```
###
### **TODO:** add multi-file grep example.
[ $# -le 1 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
awk "-F${1:- }" '
NF>1{f[$1]=substr($0,length($1)+1+length(FS))}END{for(k in f)print k FS f[k]}
'
}
[ "${SOURCING:-0}" -gt 0 ] || sv "$@"