鉴于以下情况: import( "bytes" "code.google.com/p/go/src/pkg/text/template" ) .... var tmp = template.Must(template.New("").Parse(` echo {{.Name}} echo {{.Surname}} `[1:])) var buf bytes.Buffer tmp.Execute(&buf, struct{Name string, Surname: string}{"James","Dean"}) bashScript = string(buf) // Now, how do I execute the bash script? magic.Execute(bashScript)是否有一个魔术函数可以将字符串作为一个 bash 脚本执行?"os/exec".Command 一次只能执行一个命令。
- 2 回答
- 0 关注
- 227 浏览
添加回答
举报
0/150
提交
取消