📌  相关文章
📜  bash 递归删除所有类型的文件 - Shell-Bash 代码示例

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

代码示例2
# print all files recursively with exstension .bak
find . -name "*.bak" -type f

# add -delete command at the end to delete them
find . -name "*.bak" -type f -delete