1

Dirlist=$(find $1 -type d)用来获取作为$1参数给出的目录的子目录列表,但我需要从Dirlist列表的第一个元素(目录$1本身)中删除。有人可以告诉我我该怎么做,好吗?

4

1 回答 1

4

您可以添加-mindepth 1选项:

find $1 -mindepth 1 -type d 
于 2012-05-03T14:48:32.700 回答