真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

golang如何封裝一個bash函數(shù)用來執(zhí)行bash命令

這篇文章主要介紹了golang如何封裝一個bash函數(shù)用于執(zhí)行bash命令,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計、成都網(wǎng)站制作、利津網(wǎng)絡(luò)推廣、微信小程序、利津網(wǎng)絡(luò)營銷、利津企業(yè)策劃、利津品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供利津建站搭建服務(wù),24小時服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com

在go中封裝一個bash函數(shù),用于執(zhí)行bash命令

package mainimport "os/exec"http:// 執(zhí)行bash命令,返回輸出以及執(zhí)行后退出狀態(tài)碼func Bash(cmd string) (out string, exitcode int) {
    cmdobj := exec.Command("bash", "-c", cmd)
    output, err := cmdobj.CombinedOutput()
    if err != nil {
        // Get the exitcode of the output
        if ins, ok := err.(*exec.ExitError); ok {
            out = string(output)
            exitcode = ins.ExitCode()
            return out, exitcode        }
    }
    return string(output), 0}

執(zhí)行

func main() {
    out, _ := utils.Bash("ifconfig")
    fmt.Println(out)}// 輸出:lo0: flags=8049 mtu 16384
        options=1203
        inet 127.0.0.1 netmask 0xff000000 
        inet6 ::1 prefixlen 128 
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 
        nd6 options=201gif0: flags=8010 mtu 1280stf0: flags=0<> mtu 1280en5: flags=8863 mtu 1500
        ether ac:de:48:00:11:22 
        inet6 fe80::aede:48ff:fe00:1122%en5 prefixlen 64 scopeid 0x4 
        nd6 options=201
        media: autoselect (100baseTX )
        status: active
ap1: flags=8802 mtu 1500
        options=400
        ether b2:9c:4a:b7:0f:e6 
        media: autoselect
        status: inactive
en0: flags=8863 mtu 1500
        options=400
        ether 90:9c:4a:b7:0f:e6 
        nd6 options=201
        media: autoselect ()
        status: inactive
awdl0: flags=8902 mtu 1500
        options=400
        ether fa:96:0c:c0:b4:98 
        nd6 options=201
        media: autoselect
        status: inactive
llw0: flags=8863 mtu 1500
        options=400
        ether fa:96:0c:c0:b4:98 
        nd6 options=201
        media: autoselect
        status: inactive
en1: flags=8963 mtu 1500
        options=460
        ether ee:48:05:91:d0:44 
        media: autoselect 
        status: inactive
en2: flags=8963 mtu 1500
        options=460
        ether ee:48:05:91:d0:45 
        media: autoselect 
        status: inactive
en3: flags=8963 mtu 1500
        options=460
        ether ee:48:05:91:d0:41 
        media: autoselect 
        status: inactive
en4: flags=8963 mtu 1500
        options=460
        ether ee:48:05:91:d0:40 
        media: autoselect 
        status: inactive
bridge0: flags=8863 mtu 1500
        options=63
        ether ee:48:05:91:d0:44 
        Configuration:
                id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
                maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
                root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
                ipfilter disabled flags 0x0
        member: en1 flags=3
                ifmaxaddr 0 port 9 priority 0 path cost 0
        member: en2 flags=3
                ifmaxaddr 0 port 10 priority 0 path cost 0
        member: en3 flags=3
                ifmaxaddr 0 port 11 priority 0 path cost 0
        member: en4 flags=3
                ifmaxaddr 0 port 12 priority 0 path cost 0
        nd6 options=201
        media: 
        status: inactive
utun0: flags=8051 mtu 1380
        inet6 fe80::e60f:e004:7bd3:9732%utun0 prefixlen 64 scopeid 0xf 
        nd6 options=201utun1: flags=8051 mtu 2000
        inet6 fe80::62dc:7f46:6f6:b955%utun1 prefixlen 64 scopeid 0x10 
        nd6 options=201en7: flags=8863 mtu 1500
        options=6467
        ether 00:e0:4c:68:01:ea 
        inet6 fe80::845:989:8b95:88e6%en7 prefixlen 64 secured scopeid 0xd 
        inet 192.168.0.100 netmask 0xffffff00 broadcast 192.168.0.255
        nd6 options=201
        media: autoselect (100baseTX )
        status: active
utun2: flags=8051 mtu 1500
        inet 10.8.0.6 --> 10.8.0.5 netmask 0xffffffff

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“golang如何封裝一個bash函數(shù)用于執(zhí)行bash命令”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


標(biāo)題名稱:golang如何封裝一個bash函數(shù)用來執(zhí)行bash命令
文章位置:http://weahome.cn/article/ihdgci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部