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.
我在 linux 中有一个文件夹,其中包含文件夹和许多名称格式为“.git**?”的文件。
如何使用 linux 命令删除这些文件和文件夹?
谢谢
使用find如下:
find
find /path/to/folder -name ".git*" -print0 | xargs -0 rm -rf