bash – 将输入字段循环为数组

前端之家收集整理的这篇文章主要介绍了bash – 将输入字段循环为数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有可能做这样的事情:
$ 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

但是结果不是顺序的。

发现自己:
$ awk '{ for(i = 1; i <= NF; i++) { print $i; } }' foo.txt
原文链接:https://www.f2er.com/bash/387311.html

猜你在找的Bash相关文章