BSD 4_3 development
[unix-history] / usr / src / usr.bin / nohup.sh
CommitLineData
45931fe2
C
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