我尝试搜索可能包含我尝试使用的空格的文件-print0
并IFS
在此处设置是我的脚本
IFS=$'\0';find people -name '*.svg' -print0 | while read file; do
grep '<image' $file > /dev/null && echo $file | tee -a embeded_images.txt;
done
我尝试对所有包含嵌入图像的 svg 文件进行精细处理,它在没有 -print0 的情况下工作,但一个文件失败,所以我停止了脚本。这是一个更简单的例子,它也不起作用
IFS=$'\0';find . -print0 | while read file; do echo $file; done
它不显示任何内容。