diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 13:20:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 13:20:27 +0000 |
commit | 1148aec146e14f4e490beca612d6cb98ef847659 (patch) | |
tree | 4cbf5a02dba5a6a26c656e7ba839ccd91bc392c1 /man/go-env.1 | |
parent | Initial commit. (diff) | |
download | golang-defaults-1148aec146e14f4e490beca612d6cb98ef847659.tar.xz golang-defaults-1148aec146e14f4e490beca612d6cb98ef847659.zip |
Adding upstream version 2:1.19~1.upstream/2%1.19_1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'man/go-env.1')
-rw-r--r-- | man/go-env.1 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/man/go-env.1 b/man/go-env.1 new file mode 100644 index 0000000..746a0ab --- /dev/null +++ b/man/go-env.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH GO-ENV 1 "2022-03-15" +.\" Please adjust this date whenever revising the manpage. +.SH NAME +go-env \- print Go environment information +.SH SYNOPSIS +.B go env +.RB [ +.IR "var ..." +.RB ] +.SH DESCRIPTION +.P +Env prints Go environment information. +.P +By default env prints information as a shell script +(on Windows, a batch file). If one or more variable +names is given as arguments, env prints the value of +each named variable on its own line. +.TP +.B \-json +prints the environment in JSON format +instead of as a shell script. +.TP +.B \-u +requires one or more arguments and unsets +the default setting for the named environment variables, +if one has been set with \(oqgo env -w\(cq. +.TP +.B \-w +requires one or more arguments of the +form NAME=VALUE and changes the default settings +of the named environment variables to the given values. +.P +For more about environment variables, see \(oqgo help environment\(cq. +.SH AUTHOR +.P +This manual page was written by Michael Stapelberg <stapelberg@debian.org> +and is maintained by the +Debian Go Compiler Team <team+go-compiler@tracker.debian.org> +based on the output of \(oqgo help env\(cq +for the Debian project (and may be used by others). |