mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-08 17:30:14 +00:00
7 lines
74 B
Awk
7 lines
74 B
Awk
|
{ i = 1
|
||
|
while (i <= NF) {
|
||
|
print $i
|
||
|
i++
|
||
|
}
|
||
|
}
|