文件名称:go-shell:一个小的Go库来运行Shell命令
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-20 14:58:19
golang golang-library Go
去壳 一个小的Go库,用于运行Shell命令。 例子: package main import ( "fmt" . "github.com/kylefeng28/go-shell" ) func main() { shell, err := NewShell("/bin/bash") if err != nil { panic("could not create shell") } defer shell.Close() out, err := shell.Run("echo hello world") if err != nil { panic("error execuing command") } fmt.Println(out) } 未来功能 使用通道的stdin和stdout
【文件预览】:
go-shell-master
----examples()
--------hello.go(314B)
----README.md(445B)
----shell.go(1KB)
----shell_test.go(499B)