mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
9 lines
134 B
Text
9 lines
134 B
Text
|
#!/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
|