This Go program demonstrates how to work with environment variables using the os
package. It sets the value of the "FOO" environment variable, retrieves its value, and prints all environment variables. Let's break down the code with inline comments:
package main
import (
"fmt"
"os"
"strings"
)
func main() {
// Set the value of the "FOO" environment variable to "1"
os.Setenv("FOO", "1")
// Retrieve and print the value of the "FOO" environment variable
fmt.Println("FOO:", os.Getenv("FOO"))
// Retrieve and print the value of the "BAR" environment variable (not set)
fmt.Println("BAR:", os.Getenv("BAR"))
fmt.Println()
// Iterate through all environment variables and print their names
for _, e := range os.Environ() {
// Split the environment variable into a key-value pair
pair := strings.SplitN(e, "=", 2)
// Print the name of the environment variable
fmt.Println(pair[0])
}
}
Explanation:
-
Setting Environment Variable:
- The program uses
os.Setenv
to set the value of the "FOO" environment variable to "1".
- The program uses
-
Retrieving Environment Variable Value:
- It uses
os.Getenv
to retrieve and print the value of the "FOO" environment variable.
- It uses
-
Checking for Unset Environment Variable:
- It retrieves and prints the value of the "BAR" environment variable, which is not set. This will print an empty string.
-
Printing All Environment Variables:
- The program uses
os.Environ
to retrieve all environment variables and then iterates through them. - For each environment variable, it splits the key-value pair and prints the name of the environment variable.
- The program uses
You can run the program to see the values of the "FOO" and "BAR" environment variables, as well as all other environment variables set in your system:
go run main.go