dqy1265 2014-07-12 11:25
浏览 344
已采纳

使用Go使用参数运行sh / bash / python脚本

I've been stuck on this one a few days, I'm trying to run a bash script which runs off of the first argument (maybe I should give up all hope, haha)

Syntax for running the script can be assumed to be:

sudo bash script argument or since it has og+x it can be ran as just sudo script argument

In go I'm running it using the following:

package main

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

func main() {
    c := exec.Command("/bin/bash", "script " + argument)
    if err := c.Run(); err != nil {
        fmt.Println("Error: ", err)
    }
    os.Exit(0)
}

I have had absolutely no luck, I've tried loads of other variations as well for this...

exec.Command("/bin/sh", "-c", "sudo script", argument)

exec.Command("/bin/sh", "-c", "sudo script " + argument) (my first try)

exec.Command("/bin/bash", "-c", "sudo script" + argument)

exec.Command("/bin/bash", "sudo script", argument)

exec.Command("/bin/bash sudo script" + argument)

Most of these I am met with '/bin/bash sudo ect' no such file or directory, or Error: exit status 1 I have even gone as far as to write a Python wrapper looking for an argument and executing the bash script with subprocess. To rule out the path to the script not being defined I have tried all of the above with a direct route to the script rather than script name.

For the sake of my remaining hair, what am I doing wrong here? How can I better diagnose this problem so that I can get more information rather than exit status 1?

  • 写回答

1条回答 默认 最新

  • duankan8739 2014-07-12 11:42
    关注

    You don't need to call bash/sh at all, simply pass each argument alone, also to get the error you have to capture the command's stderr, here's a working example:

    func main() {
        c := exec.Command("sudo", "ls", "/tmp")
        stderr := &bytes.Buffer{}
        stdout := &bytes.Buffer{}
        c.Stderr = stderr
        c.Stdout = stdout
        if err := c.Run(); err != nil {
            fmt.Println("Error: ", err, "|", stderr.String())
        } else {
            fmt.Println(stdout.String())
        }
        os.Exit(0)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)