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
+6.2k Linux/Unix : Commands that you need to be careful about
+5.4k Golang : Return multiple values from function
+25.7k Golang : convert rune to integer value
+21.4k Golang : Clean up null characters from input data
+7.5k Golang : Word limiter example
+14.7k Golang : Convert(cast) int to float example
+25.3k Golang : Convert uint value to string type
+19.1k Golang : Clearing slice
+19.4k Golang : Get host name or domain name from IP address
+9.2k Golang : How to capture return values from goroutines?
+9k Golang : Inject/embed Javascript before sending out to browser example