9 lines
111 B
Awk
9 lines
111 B
Awk
BEGIN {
|
|
RS=""; FS="\n";
|
|
ORS=""; OFS="\n";
|
|
}
|
|
{
|
|
split ($2,f," ")
|
|
print $0;
|
|
}
|