Skip to content

Commit 94a31fb

Browse files
committed
golang中os/exec包用法
1 parent f6ca8ed commit 94a31fb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

main.go

+14
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,24 @@ package main
22

33
import (
44
"fmt"
5+
"os"
6+
"os/exec"
57
"github.com/Tinywan/golang-tutorial/stringutil"
68
)
79

810
func main() {
911
//fmt.Println("Hello golang-tutorial!")
1012
fmt.Printf(stringutil.Reverse("!oG ,olleH"))
13+
cmd := exec.Command("pwd")
14+
stdin,err :=cmd.StdinPipe();
15+
if err != nil {
16+
fmt.Println(err)
17+
}
18+
_,err = stdin.Write([]byte("tmp.txt"))
19+
if err != nil {
20+
fmt.Println(err)
21+
}
22+
stdin.Close()
23+
cmd.Stdout = os.Stdout //终端标准输出tmp.txt
24+
cmd.Start()
1125
}

0 commit comments

Comments
 (0)