I loaded 3 scripts and embedded them using go-bindata.
In that 2 scripts needs to be run with admin privileges and 1 script should be run as user.
How can I run a specific script as sudo?
In the example code there is only a concept of calling bash functions in go and other way round.
bash.Source("main.bash", Asset)
status, err := bash.Run("main", os.Args[1:])
What about launching the whole script?