From c88178650e2551226a88cbc87084014781f81184 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Thu, 30 Sep 2021 00:52:43 +0200 Subject: [PATCH] replace 'which' with 'command -v' --- miniupnpd/testgetifaddr.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/miniupnpd/testgetifaddr.sh b/miniupnpd/testgetifaddr.sh index 2a26a24..65aa585 100755 --- a/miniupnpd/testgetifaddr.sh +++ b/miniupnpd/testgetifaddr.sh @@ -4,13 +4,13 @@ OS=`uname -s` case $OS in *BSD | Darwin | SunOS) - NS="`which netstat`" || exit 1 - IFCONFIG="`which ifconfig`" || exit 1 + NS="`command -v netstat`" || exit 1 + IFCONFIG="`command -v ifconfig`" || exit 1 EXTIF="`$NS -r -f inet | grep 'default' | awk '{ print $NF }' `" || exit 1 EXTIP="`$IFCONFIG $EXTIF | awk '/inet / { print $2 }' `" ;; *) - IP="`which ip`" || exit 1 + IP="`command -v ip`" || exit 1 EXTIF="`LC_ALL=C $IP -4 route | grep 'default' | sed -e 's/.*dev[[:space:]]*//' -e 's/[[:space:]].*//'`" || exit 1 EXTIF="`LC_ALL=C $IP -4 addr show $EXTIF | awk '/[0-9]+:/ { print $2; exit 0 }' | cut -d ":" -f 1`" EXTIP="`LC_ALL=C $IP -4 addr show $EXTIF | awk '/inet/ { print $2; exit 0 }' | cut -d "/" -f 1`"