bash – “<((cmd args)”是什么意思在shell中?

前端之家收集整理的这篇文章主要介绍了bash – “<((cmd args)”是什么意思在shell中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当循环遍历具有包含空格的文件夹的文件夹时,我使用的 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的参数,而不是使用stdin.

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

这两个运算符一起工作就像管道一样,因此可以重写为

find /bar -name *foo* -print0 | while read line; do
  ...
done
原文链接:https://www.f2er.com/bash/385153.html

猜你在找的Bash相关文章