home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.0 (User) / OS_user_4.0.iso / usr / bin / nohup < prev    next >
Encoding:
Text File  |  1996-04-21  |  139 b   |  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.