Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个“app”文件夹,其中有几个文件夹。在每个文件夹中,我都有一个“web”和一个“conf”文件夹。
我想知道每个文件夹里面有什么。
有什么线索吗?
使用find:
find
find app -type f \( -wholename "*/web/*" -o -wholename "*/config/*" \)
这将列出web和config目录中的所有文件。
web
config