Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的笔式驱动器中有很多 exe 文件(位于不同的目录中)。
如何使用 Linux 命令删除所有文件?
删除exe当前目录树中的所有文件。
exe
find . -name "*.exe" -delete
如果您的笔式驱动器有超过 2 个目录,那么您需要在每个目录中运行此命令。