date and time created 91/11/11 15:02:22 by bostic
[unix-history] / usr / src / usr.bin / printenv / printenv.1
CommitLineData
b5dc1377 1.\" Copyright (c) 1980, 1990 The Regents of the University of California.
4863c0b1 2.\" All rights reserved.
ae8545ab 3.\"
cf136d2c
KB
4.\" This code is derived from software contributed to Berkeley by
5.\" the Institute of Electrical and Electronics Engineers, Inc.
555f1dc6 6.\" %sccs.include.redist.roff%
cf136d2c 7.\"
555f1dc6 8.\" @(#)printenv.1 6.7 (Berkeley) %G%
4863c0b1 9.\"
b5dc1377
CL
10.Dd
11.Dt PRINTENV 1
555f1dc6 12.Os BSD 3
b5dc1377 13.Sh NAME
5325ced3
CL
14.Nm printenv , env
15.Nd print out the environment, set and print environment
b5dc1377
CL
16.Sh SYNOPSIS
17.Nm printenv
18.Op Ar name
19.Nm env
20.Op Fl
555f1dc6 21.Op Ar name=value ...
b5dc1377
CL
22.Op Ar command
23.Sh DESCRIPTION
24.Nm Printenv
4863c0b1 25prints out the names and values of the variables in the environment,
b5dc1377
CL
26with one name/value pair per line. If
27.Ar name
28is specified, only
4863c0b1 29its value is printed.
b5dc1377 30.Pp
ae8545ab 31If a
b5dc1377 32.Ar name
ae8545ab 33is specified and it is not defined in the environment,
b5dc1377 34.Nm printenv
ae8545ab 35returns exit status 1, else it returns status 0.
b5dc1377
CL
36.Pp
37.Nm Env
38executes
39.Ar command
40after modifying the environment as
41specified on the command line. The option
42.Ar name=value
43specifies
44an environmental variable,
45.Ar name ,
46with a value of
47.Ar value .
48The option
5325ced3 49.Sq Fl
b5dc1377
CL
50causes
51.Nm env
52to completely ignore the environment
4863c0b1 53it inherits.
b5dc1377
CL
54.Pp
55If no command is specified,
56.Nm env
57prints out the names and values
4863c0b1 58of the variables in the environment, with one name/value pair per line.
b5dc1377
CL
59.Sh SEE ALSO
60.Xr csh 1 ,
61.Xr sh 1 ,
62.Xr execvp 3 ,
63.Xr environ 7
64.Sh HISTORY
555f1dc6
CL
65The
66.Nm printenv
67command appeared in
68.Bx 3.0 .
b5dc1377
CL
69.Sh BUGS
70.Nm Env
71doesn't handle commands with equal (``='') signs in their
4863c0b1 72names, for obvious reasons.