From: Rein Tollevik Date: Wed, 28 Jan 2009 22:43:39 +0000 (+0000) Subject: Use backticks, $(...) is not in old shells. X-Git-Tag: ACLCHECK_0~919 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=537c07dde0f679572414c08127d9c3d2c798bb17;p=openldap Use backticks, $(...) is not in old shells. --- diff --git a/tests/run.in b/tests/run.in index f09ae11ca0..3318798045 100644 --- a/tests/run.in +++ b/tests/run.in @@ -99,7 +99,7 @@ while test $# -gt 0 ; do KILLSERVERS=no shift ;; -l | -loop) - NUM="$(echo $2 | sed 's/[0-9]//g')" + NUM="`echo $2 | sed 's/[0-9]//g'`" if [ -z "$NUM" ]; then LOOP=$2 else