如何在交互中执行多个命令 shell
How to execute multiple commands in interactive shell
我的应用程序使用控制台提供的各种 shell 命令(curl
、date
、ping
,等等)。现在我想用交互式 shell 命令(如 mongo shell)来介绍案例,使用 os/exec
.
例如第一步,连接到 mongodb:
mongo --quiet --host=localhost blog
然后执行任意数量的命令,每一步都得到结果
db.getCollection('posts').find({status:'INACTIVE'})
然后
exit
我尝试了以下方法,但它只允许我为每个 mongo 连接执行一个命令:
func main() {
cmd := exec.Command("sh", "-c", "mongo --quiet --host=localhost blog")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
stdin, _ := cmd.StdinPipe()
go func() {
defer stdin.Close()
io.WriteString(stdin, "db.getCollection('posts').find({status:'INACTIVE'}).itcount()")
// fails, if I'll do one more here
}()
cmd.Run()
cmd.Wait()
}
有没有办法 运行 多个命令,每个执行的命令获得标准输出结果?
正如 Flimzy 指出的那样,您绝对应该使用 mongo 驱动程序来与 mongo 一起工作,而不是试图通过 shell exec.
与其交互。
但是,要回答根本问题,您当然可以执行多个命令 - 没有理由不能。每次您写入进程的标准输入时,就好像您在终端输入它一样。对此没有秘密限制,除了专门检测它们是否连接到 TTY 的进程。
不过您的代码有几个问题 - 您绝对应该查看 os/exec
package documentation。您正在呼叫 cmd.Run
,其中:
starts the specified command and waits for it to complete.
然后调用 cmd.Wait
,这...也等待命令完成。你正在 goroutine 中写入 stdin 管道,即使这是一个非常序列化的过程:你想写入管道以执行命令,获取结果,编写另一个命令,获取另一个结果......并发只是混乱事项,不应该在这里使用。而且你不会发送换行符来告诉 Mongo 你已经完成了命令的编写(就像你在 shell 中所做的那样 - Mongo 不会立即开始执行你输入右括号,你必须按回车键)。
您希望通过 stdin/stdout 与进程进行交互(再次注意 这绝对不是与数据库交互的方式,但是可能对其他外部命令有效):
cmd := exec.Command("sh", "-c", "mongo --quiet --host=localhost blog")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
stdin, _ := cmd.StdinPipe()
// Start command but don't wait for it to exit (yet) so we can interact with it
cmd.Start()
// Newlines, like hitting enter in a terminal, tell Mongo you're done writing a command
io.WriteString(stdin, "db.getCollection('posts').find({status:'INACTIVE'}).itcount()\n")
io.WriteString(stdin, "db.getCollection('posts').find({status:'ACTIVE'}).itcount()\n")
// Quit tells it you're done interacting with it, otherwise it won't exit
io.WriteString(stdin, "quit()\n")
stdin.Close()
// Lastly, wait for the process to exit
cmd.Wait()
我的应用程序使用控制台提供的各种 shell 命令(curl
、date
、ping
,等等)。现在我想用交互式 shell 命令(如 mongo shell)来介绍案例,使用 os/exec
.
例如第一步,连接到 mongodb:
mongo --quiet --host=localhost blog
然后执行任意数量的命令,每一步都得到结果
db.getCollection('posts').find({status:'INACTIVE'})
然后
exit
我尝试了以下方法,但它只允许我为每个 mongo 连接执行一个命令:
func main() {
cmd := exec.Command("sh", "-c", "mongo --quiet --host=localhost blog")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
stdin, _ := cmd.StdinPipe()
go func() {
defer stdin.Close()
io.WriteString(stdin, "db.getCollection('posts').find({status:'INACTIVE'}).itcount()")
// fails, if I'll do one more here
}()
cmd.Run()
cmd.Wait()
}
有没有办法 运行 多个命令,每个执行的命令获得标准输出结果?
正如 Flimzy 指出的那样,您绝对应该使用 mongo 驱动程序来与 mongo 一起工作,而不是试图通过 shell exec.
与其交互。但是,要回答根本问题,您当然可以执行多个命令 - 没有理由不能。每次您写入进程的标准输入时,就好像您在终端输入它一样。对此没有秘密限制,除了专门检测它们是否连接到 TTY 的进程。
不过您的代码有几个问题 - 您绝对应该查看 os/exec
package documentation。您正在呼叫 cmd.Run
,其中:
starts the specified command and waits for it to complete.
然后调用 cmd.Wait
,这...也等待命令完成。你正在 goroutine 中写入 stdin 管道,即使这是一个非常序列化的过程:你想写入管道以执行命令,获取结果,编写另一个命令,获取另一个结果......并发只是混乱事项,不应该在这里使用。而且你不会发送换行符来告诉 Mongo 你已经完成了命令的编写(就像你在 shell 中所做的那样 - Mongo 不会立即开始执行你输入右括号,你必须按回车键)。
您希望通过 stdin/stdout 与进程进行交互(再次注意 这绝对不是与数据库交互的方式,但是可能对其他外部命令有效):
cmd := exec.Command("sh", "-c", "mongo --quiet --host=localhost blog")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
stdin, _ := cmd.StdinPipe()
// Start command but don't wait for it to exit (yet) so we can interact with it
cmd.Start()
// Newlines, like hitting enter in a terminal, tell Mongo you're done writing a command
io.WriteString(stdin, "db.getCollection('posts').find({status:'INACTIVE'}).itcount()\n")
io.WriteString(stdin, "db.getCollection('posts').find({status:'ACTIVE'}).itcount()\n")
// Quit tells it you're done interacting with it, otherwise it won't exit
io.WriteString(stdin, "quit()\n")
stdin.Close()
// Lastly, wait for the process to exit
cmd.Wait()