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
Sure:
curl http://example.com | md5sum
wget -O- <URL> | md5sum
可能做。