Golang : Get absolute path to binary for os.Exec function with exec.LookPath
Sometimes it is good to tell our Golang program to execute exactly which binary file based on the path. For instance, there will be situation where due to poor system administration on client's machine....possible...duplicate binaries might caused unwanted/weird result due to different versions.
Before we can execute a binary with os.Exec()
, Go needs to know the absolute path to the binary. This can be accomplish with the exec.LookPath()
function.
If the path returned by exec.LookPath()
function is not what you after, then you want to change the path variable before executing.
For example :
package main
import (
"fmt"
"os/exec"
)
func main() {
path, err := exec.LookPath("dig")
if err != nil {
panic(err)
}
fmt.Println("Will be executing the binary at :", path)
// if path is not what you after, assign new string value to path
cmd := exec.Command(path, "any", "google.com")
out, err := cmd.Output()
if err != nil {
fmt.Println(err.Error())
return
}
fmt.Print(string(out))
}
Sample output :
Will be executing the binary at : /usr/bin/dig
Reference :
See also : Golang : Execute shell command
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10k Golang : Turn string or text file into slice example
+22.6k Golang : How to read JPG(JPEG), GIF and PNG files ?
+9.8k Golang : Eroding and dilating image with OpenCV example
+14.1k Generate salted password with OpenSSL example
+9.8k Golang : Sort and reverse sort a slice of floats
+11k Golang : How to transmit update file to client by HTTP request example
+30.3k Golang : How to declare kilobyte, megabyte, gigabyte, terabyte and so on?
+4.9k Golang : How to pass data between controllers with JSON Web Token
+9.1k Golang : automatically figure out array length(size) with three dots
+36.8k Golang : Display float in 2 decimal points and rounding up or down
+8.9k Golang : Gorilla web tool kit schema example