Linux 如何递归的删除指定文件下所有指定文件
Mar 17, 2023
2 min read
find /path/to/your/folder -type f -name
"*.exe"
-exec rm
{}
\;