"hello"という文字列を持つjarファイルを探したいが、 "helloworld"という文字列を含むべきではない。 私はgrepの中で二つの条件を渡すためのコマンドを知りたいjars.Would正しい与えていない以下のようなコマンド、1文字列が一致し、1文字列がLinuxで一致しないjarを見つける方法
find . -iname '*.jar' -printf "unzip -c %p | grep -q 'hello' && grep -qL 'helloworld' && echo %p\n" | sh
を試してみましたか?
これは役立つかもしれないhttp://stackoverflow.com/questions/14952678/how-to-find-a-list-of-jar-files-that-contains -a-specific-class-in-unix – Athar