本文整理汇总了Golang中github.com/lotreal/docker-pods/src/sh.Command.Run方法的典型用法代码示例。如果您正苦于以下问题:Golang Command.Run方法的具体用法?Golang Command.Run怎么用?Golang Command.Run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/lotreal/docker-pods/src/sh.Command
的用法示例。
在下文中一共展示了Command.Run方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestRun
func TestRun(t *testing.T) {
cmd := sh.Command{"echo -n 12; echo 34"}
out, _ := cmd.Run()
if out != "1234" {
t.Errorf("command(%s) should output 1234, but is: %#v", cmd.Text(), out)
}
}
示例2: TestFoo
func TestFoo(t *testing.T) {
cmd := sh.Command{"foo"}
_, err := cmd.Run()
if err.Error() != "exit status 127" {
t.Errorf("command(%s) should exit with 127, but is: %#v", cmd.Text(), err.Error())
}
}
示例3: gitDescribe
func gitDescribe(dir string) (string, error) {
os.Chdir(dir)
script := "git describe"
cmd := sh.Command{script}
out, err := cmd.Run()
return out, err
}
示例4: gitRev
func gitRev(dir string) (string, error) {
os.Chdir(dir)
script := "git rev-list --count --first-parent HEAD"
cmd := sh.Command{script}
out, err := cmd.Run()
if err != nil {
return "", err
}
return fmt.Sprintf("r%s", out), err
}