如何在 Mac 上制作 MD5 文件

发布于 2024-10-26 03:49:30 字数 84 浏览 1 评论 0原文

我正在通过电子邮件向某人发送源代码包。我已向他们发送了包含这些文件的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿忘心安 2024-11-02 03:49:30

打开终端并使用您要为其创建哈希的文件名调用md5程序:

md5 some_app > md5.txt

上面的命令将生成的哈希存储在名为md5的文件中.txt

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.

落花浅忆 2024-11-02 03:49:30

在您的终端中,只需使用命令“md5”和文件名。我认为它在 /sbin/md5 中。

> md5 -r myfile.txt

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

> md5 -r myfile.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文