如何在 Mac 上制作 MD5 文件
我正在通过电子邮件向某人发送源代码包。我已向他们发送了包含这些文件的 .svdump。他们现在要求我发送源转储的 MD5 文件。如何在 Mac 上创建它?
I'm sending a source code package to someone via email. I have sent them an .svdump which contains the files. They have now asked me to send an MD5 file for the source dump. How do I create this on a Mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打开终端并使用您要为其创建哈希的文件名调用
md5
程序:上面的命令将生成的哈希存储在名为
md5的文件中.txt
。Open up a terminal and invoke the
md5
program with the filename that you want to create a hash for:The command above stores the resulting hash in a file named
md5.txt
.在您的终端中,只需使用命令“md5”和文件名。我认为它在 /sbin/md5 中。
In your terminal, just use the command "md5" and the file name. It's in /sbin/md5 i think.