10 lines
63 B
Awk
10 lines
63 B
Awk
|
function test(x) {
|
||
|
print x
|
||
|
getline
|
||
|
print x
|
||
|
}
|
||
|
|
||
|
{
|
||
|
test($0)
|
||
|
}
|