In this program, we will get environment detail using os.Environ() function and then access environment detail using range and print on the console screen.
The source code to print the environment detail is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Golang program to print environment detail
package main
import "fmt"
import "os"
import "strings"
func main() {
var envDetails []string = os.Environ()
for envIndex, envVar := range envDetails {
Value := strings.Split(envVar, "=")
fmt.Printf("%d-> (%s: %s)\n", envIndex, Value[0], Value[1])
}
}
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" package to use the Printf() function and we also imported the "os" package to use the Environ() function.
In the main() function, we got environment detail using os.Environ() function. Then we accessed environment detail one by one using range and printed the result on the console screen.
Program/Source Code:
The source code to print the environment detail is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
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" package to use the Printf() function and we also imported the "os" package to use the Environ() function.
In the main() function, we got environment detail using os.Environ() function. Then we accessed environment detail one by one using range and printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer