doutuan8887 2018-11-17 11:13
浏览 221
已采纳

管道命令并使用命令重定向golang中的输出

Here is my code :

package main

import (
    "fmt"
    "os"
    "os/exec"
    "strconv"
    "time"
)

func main() {
    year, month, day := time.Now().Date()
    monthI := int(month)
    fmt.Println("toto")
    date := strconv.Itoa(year)+"_"+strconv.Itoa(monthI)+"_"+strconv.Itoa(day)
    nameSnapshot := "storedb@backup_"+date
    args := []string{"snapshot",nameSnapshot}
    cmd := exec.Command("zfs", args...)
    err := cmd.Run()
    if err != nil {
        os.Stderr.WriteString(err.Error())
    }
    args = []string{"send",nameSnapshot,"|","gzip",">","backup_"+date+".gz"}
    cmd = exec.Command("zfs", args...)
    err = cmd.Run()
    if err != nil {
        os.Stderr.WriteString(err.Error())
    }


}

I would like to do it in one command.

My second line the zfs send command seems not working.

How to pipe and redirect the ouput in golang with cmd.exec ?

Regards

  • 写回答

1条回答 默认 最新

  • douou8954 2018-11-17 12:39
    关注

    This is a simplified version of how you would achieve this:

    outfile, _ := os.OpenFile("backup.gz", os.O_RDWR|os.O_CREATE, 0755)
    
    // your zfs command
    zfs := exec.Command("zfs", "send", "storedb@backup")
    gzip := exec.Command("gzip", "-cf") // gzip to stdout (-cf)
    gzip.Stdin, _ = zfs.StdoutPipe()    // zfs stdout to gzip stdin
    gzip.Stdout = outfile               // write output of gzip to outfile
    gzip.Start()                        // gzip start waiting for input
    zfs.Run()                           // zfs start command
    gzip.Wait()                         // gzip wait for pipe to close
    outfile.Close()
    

    It is equivalent to this command in the shell:

    zfs send stored@backup | gzip -cf > backup.gz
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan