home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-User.iso / usr / bin / nohup < prev    next >
Text File  |  1997-03-28  |  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.