Unix and Linux Discussions Tagged with nohup |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,214 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
15,776 |
Red Hat |
|
|
|
8 |
15,890 |
Shell Programming and Scripting |
|
|
|
5 |
8,589 |
Solaris |
|
|
|
1 |
1,286 |
Shell Programming and Scripting |
|
|
|
3 |
6,387 |
Shell Programming and Scripting |
|
|
|
1 |
21,737 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,136 |
Shell Programming and Scripting |
|
|
|
4 |
16,788 |
Shell Programming and Scripting |
|
|
|
12 |
9,450 |
Shell Programming and Scripting |
|
|
|
15 |
30,937 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
12,342 |
Shell Programming and Scripting |
|
|
|
2 |
4,282 |
Shell Programming and Scripting |
|
|
|
3 |
14,680 |
Shell Programming and Scripting |
|
|
|
2 |
6,452 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,367 |
Shell Programming and Scripting |
|
|
|
10 |
9,440 |
Shell Programming and Scripting |
|
|
|
1 |
11,030 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,700 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
6,238 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,638 |
Shell Programming and Scripting |
|
|
|
2 |
7,371 |
Shell Programming and Scripting |
|
|
|
3 |
11,462 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
11,877 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,069 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
7,007 |
AIX |
|
|
|
2 |
13,376 |
Shell Programming and Scripting |
|
|
|
1 |
3,236 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
7,232 |
Shell Programming and Scripting |
|
|
|
5 |
9,390 |
Shell Programming and Scripting |
|
|
|
2 |
27,625 |
Shell Programming and Scripting |
|
|
|
4 |
10,197 |
Shell Programming and Scripting |
|
|
|
6 |
205,483 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
10,385 |
Shell Programming and Scripting |
|
|
|
1 |
10,614 |
Shell Programming and Scripting |
|
|
|
2 |
11,024 |
Solaris |
|
|
|
3 |
9,278 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,786 |
UNIX for Dummies Questions & Answers |
|
|
|
12 |
309,795 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
16,774 |
Shell Programming and Scripting |
NOHUP(1) BSD General Commands Manual NOHUP(1)
NAME
nohup -- invoke a utility immune to hangups
SYNOPSIS
nohup [--] utility [arguments]
DESCRIPTION
The nohup utility invokes utility with its arguments and at this time sets the signal SIGHUP to be ignored. If the standard output is a ter-
minal, the standard output is appended to the file nohup.out in the current directory. If standard error is a terminal, it is directed to
the same place as the standard output.
Some shells may provide a builtin nohup command which is similar or identical to this utility. Consult the builtin(1) manual page.
ENVIRONMENT
The following variables are utilized by nohup:
HOME If the output file nohup.out cannot be created in the current directory, the nohup utility uses the directory named by HOME to create
the file.
PATH Used to locate the requested utility if the name contains no '/' characters.
EXIT STATUS
The nohup utility exits with one of the following values:
126 The utility was found, but could not be invoked.
127 The utility could not be found or an error occurred in nohup.
Otherwise, the exit status of nohup will be that of utility.
SEE ALSO
builtin(1), csh(1), signal(3)
STANDARDS
The nohup utility is expected to be IEEE Std 1003.2 (``POSIX.2'') compatible.
BUGS
Two or more instances of nohup can append to the same file, which makes for a confusing output.
BSD
July 19, 2001 BSD