@echo off & cd /d "%~dp0"
set /a n=0
(
for /r %%i in (*) do (
set /p="%%i|%%~nxi|"<nul
certutil -hashfile "%%i" MD5 | findstr /v "[^0-9a-z]"
set /a "n+=1"
call title %%n%%
)
) > "MD5.txt"
pause&exit
linux 下
find ./ -type f -print0 | xargs -0 md5sum > ./all.md5
原创文章,作者:熊阿初,如若转载,请注明出处:https://www.guofc.com/1080.html