Last active
December 1, 2016 06:05
-
-
Save katabame/38a1a1bd6170f0a13b3240021bbbb411 to your computer and use it in GitHub Desktop.
.md5sum creater
This file contains hidden or 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 | |
for /f "delims=" %%i in ('certutil -hashfile %~1 MD5 ^| findstr -r -c:"^[a-z][0-9] "') do set hash=%%i | |
set hash=%hash: =% | |
echo %hash% %~1>%~1.md5sum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment