golang,如何执行需要用户输入的命令

时间:2012-07-04 01:42:09

标签: go

我想从Go执行perforce命令行“p4”来执行登录作业。 “p4登录”要求用户输入密码。

如何在Go中运行需要用户输入的程序?

以下代码不起作用。

err  = exec.Command(p4cmd, "login").Run()
if err != nil {
    log.Fatal(err)
}

2 个答案:

答案 0 :(得分:4)

来自os/exec.Command文档:

// Stdin specifies the process's standard input. If Stdin is
// nil, the process reads from the null device (os.DevNull).
Stdin io.Reader

在执行命令之前设置命令的Stdin字段。

答案 1 :(得分:0)

// To run any system commands. EX: Cloud Foundry CLI commands: `CF login`
cmd := exec.Command("cf", "login")

// Sets standard output to cmd.stdout writer
cmd.Stdout = os.Stdout

// Sets standard input to cmd.stdin reader
cmd.Stdin = os.Stdin

cmd.Run()