Home »
Golang »
Golang Programs
Golang program to parse a command line flag of integer type
Here, we are going to learn how to parse a command line flag of integer type in Golang (Go Language)?
Submitted by Nidhi, on April 12, 2021 [Last updated : March 04, 2023]
Parsing a command line flag of integer type in Golang
Problem Solution:
In this program, we will pass the integer type flag from the command line during program execution and then print the value of the specified flag on the console screen.
Program/Source Code:
The source code to parse a command line flag of integer type is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Golang code to parse a command line flag of integer type
// Golang program to parse a
// command line flag of integer type
package main
import "fmt"
import "flag"
func main() {
PtrInt := flag.Int("luckyNum", 786, "an int")
fmt.Println("Default value of lucky number: ", *PtrInt)
flag.Parse()
fmt.Println("Value of lucky number: ", *PtrInt)
}
Output:
$ go run hello.go -luckyNum=123
Default value of lucky number: 786
Value of lucky number: 123
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt, flag packages then we can use a function related to the fmt and flag package.
In the main() function, we passed the integer type flag from the command line during program execution and then parse the command line flag luckyNum using the flag.Int(), flag.Parse() functions and printed the default and actual value of the specified flag on the console screen.
Golang Command-Line Arguments Programs »