我有很多目录需要删除一些子目录。有没有办法 deltree/rmdir 以便删除所有标题为“TAB”、“Tab_old”的目录和其中的文件。
目录结构就像
root>townx>TAB
root>towny>
root>towny>TAB
root>towny>zone1>
root>towny>zone1>Tab
等等......所以应该删除所有“TAB”目录。
===== edmastermind29 建议的流程输出 ====
$ find / -name "TAB" -type d -exec rm -rf {} \;
atgisuser@ATGISLAPTOP02 /c/scratch/Test_Lidar
$ ls
Ath_test.csv LAS Success_LOG.txt asc
Contours Orthophotomosaic XYZ schema.ini
atgisuser@ATGISLAPTOP02 /c/scratch/Test_Lidar
$ cd contours
atgisuser@ATGISLAPTOP02 /c/scratch/Test_Lidar/contours
$ ls
Atherton TAB
atgisuser@ATGISLAPTOP02 /c/scratch/Test_Lidar/contours
$
上面的“TAB”目录应该删除...