字符串校验和

发布于 2024-12-01 14:00:48 字数 150 浏览 0 评论 0原文

有没有办法在 Linux 中计算字符串的校验和?我见过的校验和命令(cksummd5sumsha1sum 等)都需要一个文件作为输入,而我没有文件。我只有一条到某个位置的路径,并且想计算该路径上的校验和。

Is there a way to calculate a checksum on a string in Linux? The checksum commands that I have seen (cksum, md5sum, sha1sum, etc.) all require a file as input and I do not have a file. I only have a path to a location and want to calculate the checksum on that path.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

女皇必胜 2024-12-08 14:00:48
echo -n 'exampleString' | md5sum

应该有效。

echo -n 'exampleString' | md5sum

should work.

沫尐诺 2024-12-08 14:00:48
echo -n "yourstring" |md5sum
echo -n "yourstring" |sha1sum
echo -n "yourstring" |sha256sum

不要忘记 -n 否则结果会改变(因为换行符将被解析)

echo -n "yourstring" |md5sum
echo -n "yourstring" |sha1sum
echo -n "yourstring" |sha256sum

don't forget -n or the result will change (cuz the newline will be parsed)

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