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.
オンラインリソースがLinuxマシンにローカルに存在しない場合にのみ、そのリソースをダウンロードしようとするスクリプトを作成しています。ローカルリソースの場合、コマンドmd5sumを使用してハッシュ値を取得できます。最初にダウンロードしなくても、オンラインリソースのmd5ハッシュを取得できるようにします。これを実行できるコマンドラインユーティリティはありますか?
例えば:
#> md5sum http: / / some_domain/some_resource_file
もちろん:
curl http://example.com | md5sum
wget -O- <URL> | md5sum
行う可能性があります。