当循环遍历具有包含空格的文件夹的文件夹时,我使用的
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.
原文链接:https://www.f2er.com/bash/385153.html<从命令行中命名的文件中读取输入.
这两个运算符一起工作就像管道一样,因此可以重写为
find /bar -name *foo* -print0 | while read line; do ... done