mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
7 lines
74 B
Awk
7 lines
74 B
Awk
{ i = 1
|
|
while (i <= NF) {
|
|
print $i
|
|
i++
|
|
}
|
|
}
|