尽管控制台成功,但使用某些参数调用命令可以工作,但其他参数则不起作用
此代码片段使用命令 / 输出 10 个进程的详细信息usr/bin/top 带有参数 -n 10 和 -l 2:
package main import ( "os/exec" ) func main() { print(top()) } func top() string { app := "/usr/bin/top" cmd := exec.Command(app, "-n 10", "-l 2") out, err := cmd.CombinedOutput() if err != nil { return err.Error() + " " + string(out) } value := string(out) return value }
但是,添加 -o cpu 参数(例如 cmd := exec.Command(app, "-o cpu", "-n 10", "-l 2"))导致错误:
exit status 1 invalid argument -o: cpu /usr/bin/top usage: /usr/bin/top [-a | -d | -e | -c <mode>] [-F | -f] [-h] [-i <interval>] [-l <samples>] [-ncols <columns>] [-o <key>] [-O <secondaryKey>] [-R | -r] [-S] [-s <delay>] [-n <nprocs>] [-stats <key(s)>] [-pid <processid>] [-user <username>] [-U <username>] [-u]
有趣的是,命令 top -o cpu -n 10 -l 2 工作正常来自 OS X 10.9.3 中的控制台。
问题是由 Go 代码中的参数分隔方式引起的。以下行:
cmd := exec.Command(app, "-o cpu", "-n 10", "-l 2")
相当于在 shell 中使用命令 top "-o cpu" "-n 10" "-l 2"。大多数命令严格解析这种格式的参数。因此,top 将 -o cpu 作为第一个选项分离出来,将其余的作为其参数。这适用于数字参数,但在查找名为“cpu”的字段时失败,从而导致错误。
要解决此问题,请按如下方式分隔参数:
cmd := exec.Command(app, "-o", "cpu", "-n", "10", "-l", "2")
以上是为什么我的 Go 代码无法执行带有某些参数的'top”命令,而同一命令可以从控制台运行?的详细内容。更多信息请关注PHP中文网其他相关文章!