Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a script that attempts to download an online resource only if that resource does not exist locally on a linux machine. For the local resource I can get the hash value by using the command md5sum I want to be able to retrieve the md5 hash of an online resource without having to download it first. Are there any command line utilities able to do this?

eg:

#> md5sum http: / / some_domain/some_resource_file   
share|improve this question

2 Answers

Sure:

curl http://example.com | md5sum
share|improve this answer
wget -O- <URL> | md5sum

might do.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.