From: Jozsef Kadlecsik Date: Mon, 24 Aug 2015 15:12:23 +0000 (+0200) Subject: Use IPSET_BIN in resize-and-list.sh and suppress echoing of loop variable X-Git-Tag: v6.26~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30889fdb22502d8dbf78094f2aec37a2f3c72879;p=thirdparty%2Fipset.git Use IPSET_BIN in resize-and-list.sh and suppress echoing of loop variable --- diff --git a/tests/resize-and-list.sh b/tests/resize-and-list.sh index 209408a4..d6fab7be 100755 --- a/tests/resize-and-list.sh +++ b/tests/resize-and-list.sh @@ -1,11 +1,10 @@ #!/bin/sh ./resize.sh & +ipset=${IPSET_BIN:-../src/ipset} n=0 while [ $n -ne 8161 ]; do - echo $n - n=`ipset -S resize-test | wc -l` + # echo $n + n=`$ipset -S resize-test | wc -l` done -ipset x - - \ No newline at end of file +$ipset x