1
0
Fork 0

8 lines
66 B

{ print
i = 1
while (i <= NF) {
print " " $i
i = i + 1
}
}