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.
ディレクトリとそのサブディレクトリで見つけることができるすべての .jar ファイルでチェックサムを実行しようとしています。次に、チェックサム値を含むファイル名をファイルに出力します。
これは私が持っているものです。
md5sum | find -name *.jar >result.txt
個別に機能することがわかっている 2 つのコマンドを結合しようとしています。
どんな助けでも感謝します。
次のようなものを使用して、各ファイルに対してコマンドを実行できます。
find . -name "*.jar" -exec md5sum {} \; >result
xargs結果を次の場所にパイプすることもできます。
xargs
find . -name "*.jar" | xargs md5sum > result.txt