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.
「アプリ」フォルダーがあり、その中にいくつかのフォルダーがあります。これらのフォルダーのそれぞれに、「web」フォルダーと「conf」フォルダーがあります。
これらのフォルダのそれぞれに何が入っているか知りたいです。
どんな手掛かり ?
使用find:
find
find app -type f \( -wholename "*/web/*" -o -wholename "*/config/*" \)
webこれにより、およびconfigディレクトリ内のすべてのファイルがリストされます。
web
config