summaryrefslogtreecommitdiff
path: root/src/nohup.sh
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-03-20 23:10:02 +0000
committerJim Meyering <jim@meyering.net>1999-03-20 23:10:02 +0000
commite2ff4b6e90b230c87fc61be37dd1c29d6d51a3e9 (patch)
tree1c340fc7f67e58ba60790aa7a7a7527ad3678335 /src/nohup.sh
parente16c2033b4039ff04a3407aabe05fc51f0b3a88d (diff)
downloadcoreutils-e2ff4b6e90b230c87fc61be37dd1c29d6d51a3e9.tar.xz
Don't modify PATH just to get GNU nice. Instead, try
to find an absolute path for GNU nice. From Bruno Haible.
Diffstat (limited to 'src/nohup.sh')
-rwxr-xr-xsrc/nohup.sh27
1 files changed, 19 insertions, 8 deletions
diff --git a/src/nohup.sh b/src/nohup.sh
index d2674dcb2..a7526c4b3 100755
--- a/src/nohup.sh
+++ b/src/nohup.sh
@@ -1,6 +1,6 @@
#!/bin/sh
# nohup -- run a command immume to hangups, with output to a non-tty
-# Copyright (C) 1991, 1997 Free Software Foundation, Inc.
+# Copyright (C) 1991, 1997, 1999 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -18,10 +18,6 @@
# Written by David MacKenzie <djm@gnu.ai.mit.edu>.
-# Make sure we get GNU nice, if possible; also allow
-# it to be somewhere else in PATH if not installed yet.
-PATH=@bindir@:$PATH
-
usage="Usage: $0 COMMAND [ARG]...
or: $0 OPTION"
@@ -54,6 +50,21 @@ case $# in
* ) ;;
esac
+# Make sure we get GNU nice, if possible; also allow
+# it to be somewhere else in PATH if not installed yet.
+# But do not modify PATH itself.
+IFS="${IFS= }"; save_ifs="$IFS"; IFS=":"
+nicepath="@bindir@:$PATH"
+niceprog="nice"
+for nicedir in $nicepath; do
+ test -z "$nicedir" && nicedir="."
+ if test -x "$nicedir/nice"; then
+ niceprog="$nicedir/nice"
+ break
+ fi
+done
+IFS="$save_ifs"
+
trap "" 1
oldmask=`umask`; umask 077
# Only redirect the output if the user didn't already do it.
@@ -62,14 +73,14 @@ if [ -t 1 ]; then
if cat /dev/null >> nohup.out; then
echo "nohup: appending output to \`nohup.out'" 2>&1
umask $oldmask
- exec nice -5 -- "$@" >> nohup.out 2>&1
+ exec "$niceprog" -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 nice -5 -- "$@" >> $HOME/nohup.out 2>&1
+ exec "$niceprog" -5 -- "$@" >> $HOME/nohup.out 2>&1
fi
else
umask $oldmask
- exec nice -5 -- "$@"
+ exec "$niceprog" -5 -- "$@"
fi