mirror of
https://github.com/notwa/rc
synced 2024-11-04 22:39:02 -08:00
4 lines
118 B
Bash
Executable file
4 lines
118 B
Bash
Executable file
#!/usr/bin/env bash
|
|
awk "-F${1:- }" '
|
|
NF>1{f[$1]=substr($0,length($1)+1+length(FS))}END{for(k in f)print k FS f[k]}
|
|
'
|