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.
なぜこれが機能しないのですか?(echo は実際のコマンドではありません)
$ find . -type d -exec echo {} \; find: missing argument to `-exec'
とにかく次のようにそれを行うことができました:
$ for f in `find . -type d`; do echo $f; done
次の行は、次の例のセクションからのものですman find。
man find
find . -type f -exec file '{}' \;
{}パーツは一重引用符で囲む必要があるように見えます。
{}