gpt4 book ai didi

bash - "<<(command args)"在 shell 中是什么意思?

转载 作者:行者123 更新时间:2023-11-29 08:42:23 24 4
gpt4 key购买 nike

当递归循环遍历包含空格的文件的文件夹时,我使用的 shell 脚本是这种形式,从 internet 复制而来:

    while IFS= read -r -d $'\0' file; do
dosomethingwith "$file" # do something with each file
done < <(find /bar -name *foo* -print0)

我想我了解 IFS 位,但我不明白 ' < <(...) 是什么意思'字符的意思。显然这里有某种管道。

用 Google 搜索“<<”或“<(”非常困难。我尝试了“尖括号”和“小于括号”,但没有找到任何内容。

最佳答案

<()叫做process substitution在手册中,类似于管道,但传递 /dev/fd/63 形式的参数而不是使用标准输入。

<从命令行命名的文件中读取输入。

在一起,这两个运算符的功能就像一个管道,所以它可以重写为

find /bar -name *foo* -print0 | while read line; do
...
done

关于bash - "<<(command args)"在 shell 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2443085/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com