Beego如何在Linux下执行shell

由于工作需要经常会登录服务器去执行一段shell。有的时候在外边,没有带SSH的笔记本,单位又着急怎么办?

我想到了用http请求,然后使用go lang的exec.Command执行脚本的方式。

代码如下:

 

func (this *LoginController) Post() {
    beego.Info(this.Input().Get("username"))
    u := Cmsuser{}
    if err := this.ParseForm(&u); err != nil {
        beego.Info(err)
    } else {
 
        if u.Username == "username" && u.Pwd == "密码" {
            if errexec := exec.Command("/bin/sh", "/root/脚本.sh").Run(); errexec != nil {
 
            } else {
                this.Ctx.WriteString("Welcome to exe world!")
            }
        } else {
            this.TplName = "index/index.html"
        }
    }
}

你可能感兴趣的:(linux,beego)