Golang : How to get own program name during runtime ?
One of the common question asked by newbie to Golang is how does one get their own program name during runtime. Getting the name right can be useful for task like checking how many processes with the same name already running in memory, passing additional arguments to own program depending on the Operating System Environment variables and many other reasons.
From Golang's http://golang.org/pkg/os/#pkg-variables. Args hold the command-line arguments, starting with the program name.
Therefore, to get the program name, use os.Args[0]
os.Args[0] // name of the command
os.Args1 // first command line parameter,
os.Args[2] // second command line parameter...
Example :
package main
import (
"os"
"fmt"
)
func main() {
fmt.Fprintf(os.Stderr, "your own program name is %s \n", os.Args[0])
}
$ go run myownprogramname.go
your own program name is /var/folders/52/tbjrbqsn6ysdrbqkx91tx6640000gn/T/go-build916658700/command-line-arguments/_obj/exe/myownprogramname
$ go build myownprogramname.go
$ ./myownprogramname
your own program name is ./myownprogramname
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
+7.5k Golang : How to iterate a slice without using for loop?
+7.4k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+6.5k Unix/Linux : Use netstat to find out IP addresses served by your website server
+30k Golang : How to get HTTP request header information?
+19.3k Golang : When to use public and private identifier(variable) and how to make the identifier public or private?
+9.3k Golang : How to capture return values from goroutines?
+8.4k Golang : Find relative luminance or color brightness
+16k Golang : Read a file line by line
+8.7k Android Studio : Import third-party library or package into Gradle Scripts
+8.1k Golang : Ways to recover memory during run time.
+10.2k Golang : Compare files modify date example
+19.4k Golang : Check if directory exist and create if does not exist