home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 4.0 PR1 / NeXT_NEXTSTEP_4.0_PR1_(beta).rar / Openstep4-Pr1User.iso / usr / bin / nohup < prev    next >
Text File  |  1995-09-02  |  139b  |  8 lines

  1. trap "" 1 15
  2. if test -t 2>&1  ; then
  3.     echo "Sending output to 'nohup.out'"
  4.     exec nice -5 $* >>nohup.out 2>&1
  5. else
  6.     exec nice -5 $* 2>&1
  7. fi
  8.