码迷,mamicode.com
首页 > 其他好文 > 详细

1.8 执行命令

时间:2018-03-17 23:27:31      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:post   stdout   star   AC   div   string   run   func   log   

package main

import (
    "bytes"
    "fmt"
    "os/exec"
)

func main() {

    prc := exec.Command("ls", "-a")
    out := bytes.NewBuffer([]byte{})
    prc.Stdout = out
    err := prc.Run()
    if err != nil {
        fmt.Println(err)
    }

    if prc.ProcessState.Success() {
        fmt.Println("Process run successfully with output:\n")
        fmt.Println(out.String())
    }
}

2

package main

import (
    "bytes"
    "fmt"
    "os/exec"
)

func main() {

    prc := exec.Command("ls", "-a")
    out := bytes.NewBuffer([]byte{})
    prc.Stdout = out
    err := prc.Start()
    if err != nil {
        fmt.Println(err)
    }

    prc.Wait()

    if prc.ProcessState.Success() {
        fmt.Println("Process run successfully with output:\n")
        fmt.Println(out.String())
    }
}


/*

.
..
.idea
b.go
go_web

*/

1.8 执行命令

标签:post   stdout   star   AC   div   string   run   func   log   

原文地址:https://www.cnblogs.com/zrdpy/p/8593163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!