2020-05-08 20:40:17 +08:00
|
|
|
# go env
|
|
|
|
|
2020-05-11 12:03:05 +08:00
|
|
|
> Manage environment variables used by the Go toolchain.
|
2025-06-28 15:06:36 -07:00
|
|
|
> More information: <https://pkg.go.dev/cmd/go#hdr-Print_Go_environment_information>.
|
2020-05-08 20:40:17 +08:00
|
|
|
|
2020-05-11 12:03:05 +08:00
|
|
|
- Show all environment variables:
|
2020-05-08 20:40:17 +08:00
|
|
|
|
|
|
|
`go env`
|
|
|
|
|
2020-05-15 00:01:50 +08:00
|
|
|
- Show a specific environment variable:
|
2020-05-08 20:40:17 +08:00
|
|
|
|
|
|
|
`go env {{GOPATH}}`
|
|
|
|
|
2020-05-15 00:01:50 +08:00
|
|
|
- Set an environment variable to a value:
|
2020-05-08 20:40:17 +08:00
|
|
|
|
2020-05-11 12:03:05 +08:00
|
|
|
`go env -w {{GOBIN}}={{path/to/directory}}`
|
|
|
|
|
2020-05-15 00:01:50 +08:00
|
|
|
- Reset an environment variable's value:
|
2020-05-11 12:03:05 +08:00
|
|
|
|
|
|
|
`go env -u {{GOBIN}}`
|