在 Mac/Win/Linux 上查询文件的 MD5 值
2023-05-07 tech mac windows linux 1 mins 272 字
Windows
在 CMD 里使用原生命令 CertUtil
即可验证 md5 值:
CertUtil -hashfile 文件路径 MD5
例如:
CertUtil -hashfile C:\Users\username\Downloads\myfile.txt MD5
Mac
md5 文件路径
例如:
md5 "/Users/username/Downloads/My Folder/myfile.txt"
Linux
md5sum 目标文件
例如:
md5sum "/Users/username/Downloads/My Folder/myfile.txt"