8 lines
66 B
Plaintext
8 lines
66 B
Plaintext
{ print
|
|
i = 1
|
|
while (i <= NF) {
|
|
print " " $i
|
|
i = i + 1
|
|
}
|
|
}
|