如何在find命令中删除两个目录

时间:2015-10-08 20:45:25

标签: linux shell unix find

我有以下命令:

$ find /mnt/DCS_01 /mnt/DCS_02  \
  -name Transit -prune -o .Trashes -prune -o -type f

我正在尝试删除Transit.Trashes指挥官,但我对语法有些困难。这里适当的命令是什么?

1 个答案:

答案 0 :(得分:1)

您可以使用括号指定多个参数 -

$ find /mnt/DCS_01 /mnt/DCS_02  \
  \( -name Transit -o -name .Trashes \) -prune -o -type f