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

go flag.Parse() expect

时间:2021-01-28 12:00:57      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:word   hosts   sts   pac   lin   nil   com   exp   roo   

package main

import (
        "fmt"
        "flag"
        gexpect "github.com/ThomasRooney/gexpect"
)
func main() {
        cmdStr := flag.String("cmd", "", "cmds")
        hostStr := flag.String("host", "", "hoststr")
        passwd := flag.String("p", "", "passwd")
        flag.Parse()

        command := "ssh -o ‘StrictHostKeyChecking no‘ -o ConnectTimeout=2 " + *hostStr + " -a " + *cmdStr
        child, err := gexpect.Spawn(command)
        if err != nil {
                panic(err)
        }
        fmt.Println("-----")
        child.Expect("password:")
        child.SendLine(*passwd)
        child.Interact()
        child.Close()
}

go flag.Parse() expect

标签:word   hosts   sts   pac   lin   nil   com   exp   roo   

原文地址:https://www.cnblogs.com/ah-firelove/p/14336502.html

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