📜  bash 循环 foreach 查找 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:50.790000             🧑  作者: Mango

代码示例1
find . -name "*.txt" -print0 | while read -d $'\0' file
do
    …code using "$file"
done