Research V7 development
[unix-history] / bin / nohup
CommitLineData
4dbdeca0
KT
1trap "" 1 15
2if test -t 2>&1 ; then
3 echo "Sending output to 'nohup.out'"
4 exec nice -5 $* >>nohup.out 2>&1
5else
6 exec nice -5 $* 2>&1
7fi