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.
我的团队使用 CVS。出于某种原因,我需要创建一个 shell 脚本,该脚本会删除本地副本中存在的所有名为 CVS 的文件夹(那些使用过它的人可能会理解)。将超级目录视为 ABC。ABC 中有不同的目录,其中又包含名为 CVS 的目录。
上一个答案的变化不大:
find /path/to/ABC -type d -name "CVS" -exec rm -fdr {} \;
尝试这个:
find /path/to/ABC -type d -name "CVS" -delete