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.
我正在尝试删除目录中的某些子文件夹。
使用以下提示时:
cd到目录 Y 的根目录
cd
然后(假设文件夹名称是“X”):
find . -name X -exec rm -rf {} \;
是否可以实现除 X 之外的多个目标文件夹?
find . -name X1 -or -name X2 -type d -depth 1 ...
-type d只会找到目录。
-type d
-depth 1将其限制为当前目录的子目录(即ls不带参数列出的目录)。
-depth 1
ls