开发者

How to make an MD5 file on a Mac

开发者 https://www.devze.com 2023-02-19 18:55 出处:网络
I\'m sending a source code package to someone via email. I have sent them an .svdump which contains the files.开发者_如何学JAVA They have now asked me to send an MD5 file for the source dump. How do I

I'm sending a source code package to someone via email. I have sent them an .svdump which contains the files.开发者_如何学JAVA They have now asked me to send an MD5 file for the source dump. How do I create this on a Mac?


Open up a terminal and invoke the md5 program with the filename that you want to create a hash for:

md5 some_app > md5.txt

The command above stores the resulting hash in a file named md5.txt.


In your terminal, just use the command "md5" and the file name. It's in /sbin/md5 i think.

> md5 -r myfile.txt
0

精彩评论

暂无评论...
验证码 换一张
取 消