📌  相关文章
📜  shell 脚本中的 for 循环 - Shell-Bash 代码示例

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

代码示例6
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