Files
qse/qse/cmd/awk/adr-001.awk
2008-12-21 20:30:00 +00:00

10 lines
95 B
Awk

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