mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
8 lines
134 B
Bash
Executable file
8 lines
134 B
Bash
Executable file
#!/bin/rc
|
|
|
|
awk '
|
|
BEGIN { FS = " |, " }
|
|
{ for(i=2; i<=NF; i++)print $i " " $1 }
|
|
' $1 |
|
|
tr A-Z a-z |
|
|
sort -u -t' ' +0f -1 +0 -1 +1n -2
|