具有读取和三重<的 While 循环

While loop with read and triple <

提问人:learning-man 提问时间:10/17/2023 最后编辑:Paololearning-man 更新时间:10/17/2023 访问量:68

问:

在这个问题中:

https://unix.stackexchange.com/questions/402750/modify-global-variable-in-while-loop

我找到了对以下内容的引用:

while read -r dir
do
   echo $dir
done <<<$(find /usr/lib -type d)

但我在 Bash 高级指南中没有找到它。 这种形式是正确的还是错误的?

Linux Bash Shell while 循环 脚本

评论

3赞 pmf 10/17/2023
您正在寻找Here-Strings
0赞 tshiono 10/17/2023
虽然链接的答案被接受,但我认为这根本不是一个好的答案。请再次阅读有关您之前发布的问题的有用评论。
0赞 learning-man 10/18/2023
谢谢@pmf。所以看起来它被记录在案了!

答: 暂无答案