Read and Set Environment variables in Go
Here is a simple example to read and set environment variables in your go project.
package main
import (
"fmt"
"os"
)
func main() {
// Read
fmt.Println(os.Getenv("GOPATH"))
// Set
os.Setenv("GOPATH", "/home/username/go")
}
Disclaimer
- License under
CC BY-NC 4.0
- Copyright issue feedback
me#imzye.me
, replace # with @ - Not all the commands and scripts are tested in production environment, use at your own risk
- No privacy information is collected here