如何获取具有相同结构的多个文件夹的内容

时间:2013-09-10 08:33:33

标签: linux putty

我有一个“app”文件夹,其中我有几个文件夹。 在每个文件夹中,我都有一个“web”和一个“conf”文件夹。

我想知道每个文件夹里面的内容。

有任何线索吗?

1 个答案:

答案 0 :(得分:1)

使用find

find app -type f \( -wholename "*/web/*" -o -wholename "*/config/*" \)

这将列出webconfig目录中的所有文件。