diff options
-rwxr-xr-x | src/nohup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nohup.sh b/src/nohup.sh index b1f630ea4..2e70408b1 100755 --- a/src/nohup.sh +++ b/src/nohup.sh @@ -74,14 +74,14 @@ if [ -t 1 ]; then if cat /dev/null >> nohup.out; then echo "nohup: appending output to \`nohup.out'" 2>&1 umask $oldmask - exec "$niceprog" -5 -- "$@" >> nohup.out 2>&1 + exec "$niceprog" -n 5 -- "$@" >> nohup.out 2>&1 else cat /dev/null >> $HOME/nohup.out echo "nohup: appending output to \`$HOME/nohup.out'" 2>&1 umask $oldmask - exec "$niceprog" -5 -- "$@" >> $HOME/nohup.out 2>&1 + exec "$niceprog" -n 5 -- "$@" >> $HOME/nohup.out 2>&1 fi else umask $oldmask - exec "$niceprog" -5 -- "$@" + exec "$niceprog" -n 5 -- "$@" fi |