文件名称:go-then:连接shell命令并在golang上执行
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-19 04:08:39
Go
那就去吧 连接shell命令并在golang上执行它。 要求 该库依赖于 安装说明 $ go get github.com/sudix/go-then 用法 c1 := gothen. Cmd { "git" , "log" , "--oneline" } c2 := gothen. Cmd { "grep" , "first import" } c3 := gothen. Cmd { "wc" , "-l" } out , err := c1 . Then ( c2 ). Then ( c3 ). Exec () if err != nil { log . Fatal ( err ) } fmt . Println ( string ( out )) 执照 麻省理工学院
【文件预览】:
go-then-master
----.gitignore(266B)
----LICENSE(1KB)
----gothen_test.go(1KB)
----example_test.go(336B)
----README.md(546B)
----gothen.go(849B)