From: Jim Meyering Date: Sat, 10 Aug 2002 09:57:57 +0000 (+0000) Subject: Don't use "exec --"; it's not portable and shouldn't be needed. X-Git-Tag: v4.5.1~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01ac2fda311c61c0067e8deae9ff4bd1d2fe44d9;p=thirdparty%2Fcoreutils.git Don't use "exec --"; it's not portable and shouldn't be needed. --- diff --git a/src/nohup.sh b/src/nohup.sh index 6e720c9074..de3af298f6 100755 --- a/src/nohup.sh +++ b/src/nohup.sh @@ -76,4 +76,4 @@ if [ -t 2 ]; then exec 2>&1 fi -exec -- "$@" +exec "$@"