qse/regress/awk/adr-001.awk

10 lines
95 B
Awk

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