我正在尝试在go:
中执行bash命令"hello world" | /usr/bin/pbcopy
package main
import (
"fmt"
"os/exec"
"strings"
)
func Cmd(cmd string) {
fmt.Println("command is ", cmd)
parts := strings.Fields(cmd)
head := parts[0]
parts = parts[1:len(parts)]
out, err := exec.Command(head, parts...).Output()
if err != nil {
fmt.Printf("%s", err)
}
fmt.Println("out")
fmt.Println(string(out))
}
func main() {
Cmd(`echo "hello world" | /usr/bin/pbcopy`)
}
当我运行此go文件时,它输出:
command is echo "hello world" | /usr/bin/pbcopy
out
"hello world" | /usr/bin/pbcopy
我希望剪贴板等于"你好世界"但事实并非如此。
我已尝试使用io.Pipe
package main
import (
"bytes"
"io"
"os"
"os/exec"
)
func main() {
c1 := exec.Command(`echo "hello world"`)
c2 := exec.Command("/usr/bin/pbcopy")
r, w := io.Pipe()
c1.Stdout = w
c2.Stdin = r
var b2 bytes.Buffer
c2.Stdout = &b2
c1.Start()
c2.Start()
c1.Wait()
w.Close()
c2.Wait()
io.Copy(os.Stdout, &b2)
}
...但剪贴板仍然不等于" hello world"
答案 0 :(得分:2)
Command
获取可执行文件和参数列表。所以当你打电话时
exec.Command(`echo "hello world"`)
字面意思是尝试运行名为echo "hello world"
的命令(带空格和引号)。正如您已经了解到的那样,exec.Command
不会将内容传递给shell,因此“|”不会这样做。因此,如果您要将stdout和stdin绑在一起将它们拼凑在一起,它将如下所示:
func main() {
c1 := exec.Command("echo", "hello world")
c2 := exec.Command("/usr/bin/pbcopy")
c1stdout, _ := c1.StdoutPipe()
c2stdin, _ := c2.StdinPipe()
c1.Start()
c2.Start()
io.Copy(c2stdin, c1stdout)
c2stdin.Close()
c2.Wait()
}
但并不需要这一切。你有一个shell。如果你要求,它可以为你做所有这些。
func main() {
exec.Command("sh", "-c", `echo "hello world" | pbcopy`).Run()
}