Skip to content

find . -name "result" -type f -exec rm -f {} +

find .:从当前目录(.)开始查找文件。 -name "result":查找文件名中包含"result"的文件。 -type f:限制查找结果只包括文件,排除目录。 -exec rm -f {} +:使用rm命令删除找到的文件。-f选项表示强制删除文件,即使文件被标记为只读也会删除。{} +告诉find对每个匹配的文件执行rm命令,并尽可能地将多个文件作为一组传递给rm命令。

find /home/user/data -name "result" -type f -exec rm -f {} +

本站访客数 人次 本站总访问量