plan9fox/sys/src/cmd/dict/rev.awk

7 lines
74 B
Awk
Raw Normal View History

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