[go: up one dir, main page]

File: nohup.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 (46 lines) | stat: -rw-r--r-- 1,507 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
.TH NOHUP 1 "GNU Shell Utilities" "FSF" \" -*- nroff -*-
.SH NAME
nohup \- run a command immune to hangups, with output to a non-tty
.SH SYNOPSIS
.B nohup
command [arg...]
.br
.B nohup
{\-\-help,\-\-version}
.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 nohup .
.B nohup
runs the given
.I command
with hangup signals ignored and the scheduling priority increased by
5, so that the command can continue running in the background after
you log out.  If the standard output is a tty, it and the standard
error are redirected so that they are appended to the file
`nohup.out'; if that cannot be written to, they are appended to the
file `$HOME/nohup.out'.  If that cannot be written to, the command is
not run.
.PP
If
.B nohup
creates the file `nohup.out' or `$HOME/nohup.out', it creates it with
no access permissions for group or other.  It does not change the
permissions of those files if they already existed.
.PP
.B nohup
does not automatically put the command it runs in the background; you
must do that explicitly, by ending the command line with an `&'.
.SS OPTIONS
When GNU
.B nohup
is invoked with exactly one argument, the following options are recognized:
.TP
.I "\-\-help"
Print a usage message on standard output and exit successfully.
.TP
.I "\-\-version"
Print version information on standard output then exit successfully.