mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
16 lines
179 B
Text
16 lines
179 B
Text
|
#!/bin/rc
|
||
|
|
||
|
sed '
|
||
|
s/[ ]+$//
|
||
|
/ /!d
|
||
|
/, /{; h; s/,.*//; p; g; s/ .*, / /; }
|
||
|
' $1 |
|
||
|
sed '
|
||
|
/\(/{; h; s/\([^)]+\)//; p; g; s/[()]//g; }
|
||
|
' |
|
||
|
sed '
|
||
|
s/ +/ /
|
||
|
s/[ ]+$//
|
||
|
s/ +/ /g
|
||
|
'
|