sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

nohup.1 (652B)


      1 .Dd 2015-10-08
      2 .Dt NOHUP 1
      3 .Os sbase
      4 .Sh NAME
      5 .Nm nohup
      6 .Nd run command immune to hangups
      7 .Sh SYNOPSIS
      8 .Nm
      9 .Ar cmd
     10 .Op Ar arg ...
     11 .Sh DESCRIPTION
     12 .Nm
     13 runs
     14 .Ar cmd
     15 with the
     16 .Em HUP
     17 signal set to be ignored.
     18 .Pp
     19 If stdout is a terminal, it is appended to
     20 .Em nohup.out
     21 in the current working directory.
     22 If stderr is a terminal, it is redirected to stdout.
     23 .Sh EXIT STATUS
     24 .Bl -tag -width Ds
     25 .It 0
     26 .Ar cmd
     27 executed successfully.
     28 .It 1
     29 Internal error.
     30 .It 126
     31 .Ar cmd
     32 was found but could not be executed.
     33 .It 127
     34 .Ar cmd
     35 could not be found.
     36 .El
     37 .Sh SEE ALSO
     38 .Xr signal 7
     39 .Sh STANDARDS
     40 The
     41 .Nm
     42 utility is compliant with the
     43 .St -p1003.1-2013
     44 specification.