plan9port/src/cmd/dict/rev.awk
2003-11-25 03:37:45 +00:00

6 lines
74 B
Awk

NF == 2 {
printf "%s\t%s\n", $2, $1
}
NF != 2 {
print "ERROR " $0
}