How can I get my own program’s name at runtime? What’s Go’s equivalent of C/C++’s argv[0]? To me it is useful to generate the usage with the right name.
Update: added some code.
package main
import (
"flag"
"fmt"
"os"
)
func usage() {
fmt.Fprintf(os.Stderr, "usage: myprog [inputfile]\n")
flag.PrintDefaults()
os.Exit(2)
}
func main() {
flag.Usage = usage
flag.Parse()
args := flag.Args()
if len(args) < 1 {
fmt.Println("Input file is missing.");
os.Exit(1);
}
fmt.Printf("opening %s\n", args[0]);
// ...
}
Arguments are exposed in the
ospackage http://golang.org/pkg/os/#VariablesIf you’re going to do argument handling, the
flagpackage http://golang.org/pkg/flag is the preferred way. Specifically for your caseflag.UsageUpdate for the example you gave:
should do the trick