有可能做这样的事情:
$ cat foo.txt 1 2 3 4 foo bar baz hello world $ awk '{ for(i in $){ print $[i]; } }' foo.txt 1 2 3 4 foo bar baz hello world
我知道你可以这样做:
$ awk '{ split($0,array," "); for(i in array){ print array[i]; } }' foo.txt 2 3 4 1 bar baz foo world hello
但是结果不是顺序的。
发现自己:
原文链接:https://www.f2er.com/bash/387311.html$ awk '{ for(i = 1; i <= NF; i++) { print $i; } }' foo.txt