IT for operating businesses

Using the go-env Command

Manage environment variables used by the Go toolchain. More information: <https://pkg.go.dev/cmd/go#hdr-Print_Go_environment_information>.

  • Show all environment variables:

go env

  • Show a specific environment variable:

go env *GOPATH*

  • Set an environment variable to a value:

go env -w *GOBIN*=*path/to/directory*

  • Reset an environment variable’s value:

go env -u *GOBIN*


This content is compiled from the open-source tldr-pages project under the MIT license.