package main import ( "fmt" "flag" "log" "os" "strings" "os/exec" ) func main() { fmt.Println("Hello World") command := flag.String( "command", "", "The MAin Command") ignoreErrors := flag.Bool( "ignore-errors", false, "Keep running after error if true") flag.Parse() }