Q:

Golang program to parse multiple command-line flags

0

In this program, we will pass multiple flags from the command line during program execution and then print the values of specified flags on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to parse multiple command-line flags is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to parse multiple
// command-line flags

package main

import "fmt"
import "flag"

func main() {
	colorPtr := flag.String("color", "red", "a string")
	PtrInt := flag.Int("luckyNum", 786, "an int")

	fmt.Println("Default value of color: ", *colorPtr)
	fmt.Println("Default value of lucky number: ", *PtrInt)

	flag.Parse()

	fmt.Println("Value of lucky number: ", *PtrInt)
	fmt.Println("Value of color flag: ", *colorPtr)
}

Output:

$ go run hello.go -luckyNum=123 -color=green

Default value of color:  red
Default value of lucky number:  786
Value of lucky number:  123
Value of color flag:  green

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 fmtflag packages then we can use a function related to the fmt and flag package.

In the main() function, we passed multiple flags from the command line during program execution and then parse command line flags "color", luckyNum using flag.Int()flag.Parse() functions and printed the default and actual value of the specified flag on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Golang program to parse a command line flag of int...