BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.bin / nohup / nohup.1
CommitLineData
b5dc1377 1.\" Copyright (c) 1989, 1990 The Regents of the University of California.
1896dca3 2.\" All rights reserved.
36b987e5 3.\"
af359dea
C
4.\" This code is derived from software contributed to Berkeley by
5.\" the Institute of Electrical and Electronics Engineers, Inc.
36b987e5 6.\"
c0567266
KB
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\" notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\" notice, this list of conditions and the following disclaimer in the
14.\" documentation and/or other materials provided with the distribution.
15.\" 3. All advertising materials mentioning features or use of this software
16.\" must display the following acknowledgement:
17.\" This product includes software developed by the University of
18.\" California, Berkeley and its contributors.
19.\" 4. Neither the name of the University nor the names of its contributors
20.\" may be used to endorse or promote products derived from this software
21.\" without specific prior written permission.
22.\"
23.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33.\" SUCH DAMAGE.
af359dea
C
34.\"
35.\" @(#)nohup.1 6.8 (Berkeley) 7/27/91
36.\"
37.Dd July 27, 1991
b5dc1377 38.Dt NOHUP 1
af359dea 39.Os
b5dc1377
CL
40.Sh NAME
41.Nm nohup
42.Nd invoke a command immune to hangups
43.Sh SYNOPSIS
44.Nm nohup
45.Ar command
46.Op Ar arg ...
47.Sh DESCRIPTION
1896dca3 48The
b5dc1377
CL
49.Nm nohup
50utility invokes
51.Ar command
52with
53its arguments
af359dea
C
54and at this time sets the signal
55.Dv SIGHUP
56to be ignored. The signal
57.Dv SIGQUIT
58may also be set
b5dc1377 59to be ignored.
1896dca3
KB
60If the standard output is a terminal, the standard output is
61appended to the file
b5dc1377 62.Pa nohup.out
1896dca3
KB
63in the current directory.
64If standard error is a terminal, it is directed to the same place
65as the standard output.
b5dc1377
CL
66.Pp
67.Nm Nohup
1896dca3 68exits 1 if an error occurs, otherwise the exit status is that of
b5dc1377
CL
69.Ar command .
70.Sh ENVIRONMENT
5325ced3
CL
71The following variable is utilized by
72.Nm nohup .
af359dea
C
73.Bl -tag -width flag
74.It Ev HOME
1896dca3 75If the output file
b5dc1377 76.Pa nohup.out
1896dca3 77cannot be created in the current directory, the
b5dc1377 78.Nm nohup
1896dca3 79utility uses the directory named by
b5dc1377 80.Ev HOME
1896dca3 81to create the file.
af359dea 82.El
b5dc1377
CL
83.Sh SEE ALSO
84.Xr signal 3
85.Sh STANDARDS
af359dea
C
86The
87.Nm nohup
88command is expected to be
89.St -p1003.2
90compatible.