Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active February 15, 2024 09:29
Show Gist options
  • Save miguelmota/ed4ec562b8cd1781e7b20151b37de8a0 to your computer and use it in GitHub Desktop.
Save miguelmota/ed4ec562b8cd1781e7b20151b37de8a0 to your computer and use it in GitHub Desktop.
Golang check if command exists
package main
import (
"log"
"os/exec"
)
func main() {
path, err := exec.LookPath("ls")
if err != nil {
log.Fatal(err)
}
log.Println(path) // bin/ls
}
// as util
func commandExists(cmd string) bool {
_, err := exec.LookPath(cmd)
return err == nil
}
@thesobercoder
Copy link

@miguelmota Thanks!

@northbright
Copy link

Thanks!

@yangyang5214
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment