qse/ase/cmd/awk/adr-001.awk
2008-03-21 03:49:53 +00:00

10 lines
95 B
Awk

#!/bin/awk
BEGIN {
RS = "\n\n";
FS = "\n";
}
{
print $1, $NF;
}