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.
find -name '*.jpg' -print0 | xargs -0 qiv
qiv **/*.jpg
両方とも安全にエスケープされ、qiv?に配信されます。
qiv
はい。最初のケースでfindは、ワイルドカードを内部的に展開し、xargs期待どおりに結果を提供しています。2 番目では、シェルはそれらを展開し、各一致を個別の引数として渡します。両方とも正しいです (シェルが をサポートし**ていて、コマンド ラインの長さが最大値を超えていないことを前提としています)。
find
xargs
**