[go: up one dir, main page]

File: env.1

package info (click to toggle)
shellutils 1.16-6.3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,284 kB
  • ctags: 2,158
  • sloc: ansic: 22,599; yacc: 1,034; sh: 612; makefile: 368; perl: 239; sed: 93
file content (50 lines) | stat: -rw-r--r-- 1,582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.TH ENV 1 "GNU Shell Utilities" "FSF" \" -*- nroff -*-
.SH NAME
env \- run a program in a modified environment
.SH SYNOPSIS
.B env
[\-] [\-i] [\-u name] [\-\-ignore-environment] [\-\-unset=name]
[\-\-help] [\-\-version] [name=value]... [command [args...]]
.br
.B env
.SH DESCRIPTION
This documentation is no longer being maintained and may be inaccurate
or incomplete.  The Texinfo documentation is now the authoritative source.
.PP
This manual page
documents the GNU version of
.BR env .
.B env
runs a command with an environment modified as specified by the
command line arguments.  Arguments of the form `variable=value' set
the environment variable
.I variable
to value
.IR value .
.I value
may be empty (`variable=').  Setting a variable to an empty value is
different from unsetting it.
.PP
The first remaining argument specifies a program to invoke; it is
searched for according to the specification of the PATH environment
variable.  Any arguments following that are passed as arguments to
that program.
.PP
If no command name is specified following the environment
specifications, the resulting environment is printed.  This is like
specifying a command name of `printenv'.
.SS OPTIONS
.TP
.I "\-\-help"
Print a usage message on standard output and exit successfully.
.TP
.I "\-u, \-\-unset name"
Remove variable
.I name
from the environment, if it was in the environment.
.TP
.I "\-, \-i, \-\-ignore-environment"
Start with an empty environment, ignoring the inherited environment.
.TP
.I "\-\-version"
Print version information on standard output then exit successfully.