📜  loop bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:43.830000             🧑  作者: Mango

代码示例4
Use for in bash for iterating words in a string or values in an array as:
for value in {1, 2, 3}; do echo $value; done
for value in $(cat arguments_files.txt); do [some_command]; done
And use while for iterating lines from a pipe output as:
cat arguments_file.txt | while read line; do [some_command]; done