doujiao8649 2014-08-13 03:50
浏览 45
已采纳

Golang:将文本/模板作为bash脚本执行

Given the following:

   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)

Is there a magic function that will execute the string as one bash script? "os/exec".Command can execute only one command at a time.

  • 写回答

2条回答 默认 最新

  • douchuilai2355 2014-08-13 05:15
    关注

    If you want to execute more than one command, especially more than one at a time, bash is not the best way to do that. Use os/exec and goroutines.

    If you really want to run a bash script, here's an example using os/exec. I assumed you wanted to see the output of the bash script, rather than save it and process it (but you can easily do that with a bytes.Buffer). I've removed all the error checking here for brevity. The full version with error checking is here.

    package main
    
    import (
            "bytes"
            "io"
            "text/template"
            "os"
            "os/exec"
            "sync"
    )
    
    func main() {
            var tmp = template.Must(template.New("").Parse(`
    echo {{.Name}}
    echo {{.Surname}}
    `[1:]))
    
            var script bytes.Buffer
            tmp.Execute(&script, struct {
                    Name    string
                    Surname string
            }{"James", "Dean"})
    
            bash := exec.Command("bash")
            stdin, _ := bash.StdinPipe()
            stdout, _ := bash.StdoutPipe()
            stderr, _ := bash.StderrPipe()
    
            wait := sync.WaitGroup{}
            wait.Add(3)
            go func () {
                    io.Copy(stdin, &script)
                    stdin.Close()
                    wait.Done()
            }()
            go func () {
                    io.Copy(os.Stdout, stdout)
                    wait.Done()
            }()
            go func () {
                    io.Copy(os.Stderr, stderr)
                    wait.Done()
            }()
    
            bash.Start()
            wait.Wait()
            bash.Wait()
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr
  • ¥15 怀疑手机被监控,请问怎么解决和防止
  • ¥15 Qt下使用tcp获取数据的详细操作
  • ¥15 idea右下角设置编码是灰色的