字符串校验和
有没有办法在 Linux 中计算字符串的校验和?我见过的校验和命令(cksum
、md5sum
、sha1sum
等)都需要一个文件作为输入,而我没有文件。我只有一条到某个位置的路径,并且想计算该路径上的校验和。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该有效。
should work.
不要忘记 -n 否则结果会改变(因为换行符将被解析)
don't forget -n or the result will change (cuz the newline will be parsed)