代码拉取完成,页面将自动刷新
package shell
import (
"context"
)
type Result struct {
output string
err error
}
type Cmd interface {
New(command string)
Exec() (string, error)
Destroy() error
}
// ExecShell 执行shell命令,可设置执行超时时间
func ExecShell(ctx context.Context, command string) (string, error) {
return ExecShellEx(ctx, newCmd(), command)
}
// ExecShellEx 执行shell命令,可设置执行超时时间
func ExecShellEx(ctx context.Context, cmd Cmd, command string) (string, error) {
cmd.New(command)
receiver := make(chan Result)
go func() {
output, err := cmd.Exec()
receiver <- Result{output, err}
}()
select {
case <-ctx.Done():
return "", cmd.Destroy()
case result := <-receiver:
return result.output, result.err
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。