- 论坛徽章:
- 5
|
- [root@TEST tmp]# tree
- .
- |-- AA
- | |-- cache
- | `-- tmp
- |-- BB
- | |-- cache
- | `-- tmp
- |-- CC
- | |-- cache
- | `-- tmp
- `-- DD
- |-- cache
- `-- tmp
- 12 directories, 0 files
- [root@TEST tmp]# find . -type d -regex '^[^BB]*' -mindepth 2|xargs rm -rf
- find: warning: you have specified the -mindepth option after a non-option argument -type, but options are not positional (-mindepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
- [root@TEST tmp]# tree
- .
- |-- AA
- |-- BB
- | |-- cache
- | `-- tmp
- |-- CC
- `-- DD
- 6 directories, 0 files
复制代码 |
|