gpt4 book ai didi

go - 执行 : "cksum": executable file not found in $PATH in golang

转载 作者:IT王子 更新时间:2023-10-29 02:34:08 27 4
gpt4 key购买 nike

我正在尝试通过执行命令 cksum 使用 Go 获取一个文件的校验和。

出现以下错误:

exec: "cksum": executable file not found in $PATH

代码如下:

cmd := exec.Command("/bin/cksum",dst)

谢谢。

最佳答案

来自 exec.Command 的文档:

If name contains no path separators, Command uses LookPath to resolve the path to a complete name if possible. Otherwise it uses name directly.

所以使用 cmd := exec.Command("cksum", …) 稍微好一点,让它在路径上的任何地方被发现。或者,您应该运行 which cksum,几乎每个 unix 系统都会给出:/usr/bin/cksum

但更好的是,让您的代码可移植到任何 可以运行 Go 并使用 hash/crc32 的操作系统.或者甚至更好,如果您可以删除任何必须使用 CRC32 的要求(这是古老的 cksum 使用的),从中选择一个其他远优于的哈希值 hash/… , crypto/… (例如 sha256),或 golang.org/x/crypto/… (例如 sha3)。

关于go - 执行 : "cksum": executable file not found in $PATH in golang,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29507467/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com