BSD 3 development
[unix-history] / usr / src / cmd / nohup.sh
CommitLineData
9c79dca0
BJ
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