Created
November 9, 2015 16:44
-
-
Save Bigous/1650a2583efbfeba6100 to your computer and use it in GitHub Desktop.
Calculates MD5 hash from file (requires NodeJS)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
node -e "require('fs').readFile('%~1',function(err, data){console.log(require('crypto').createHash('md5').update(data).digest('hex'))})" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment