From: Quanah Gibson-Mount Date: Fri, 30 Jan 2009 19:48:14 +0000 (+0000) Subject: Use backticks, $(...) is not in old shells. X-Git-Tag: OPENLDAP_REL_ENG_2_4_14~62 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2aba1421c81c6facd3125468ca702322bcc04680;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