fix more instances of ": $((a++))" in shell scripts
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 15 Jul 2017 17:18:58 +0000 (19:18 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 15 Jul 2017 17:20:45 +0000 (19:20 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
examples/mdev.conf.change_blockdev.sh
examples/var_service/dhcp_if_pinger/run
util-linux/mkfs_ext2_test.sh

index 512e43fccc0fa35467e28359b56870d9478c4b3c..252d30f53f6b86bc9db645c0c60621fe5223eaa1 100755 (executable)
@@ -14,7 +14,7 @@ env | sort
 
 while sleep 1; test $cnt != 0; do
        echo "Trying to reread partition table on $DEVNAME ($cnt)"
-       : $((cnt--))
+       cnt=$((cnt-1))
        # If device node doesn't exist, it means the device was removed.
        # Stop trying.
        test -e "$DEVNAME" || { echo "$DEVNAME doesn't exist, aborting"; exit 1; }
index e0e87a16ab22103ab150a568a3066643b3fd6237..8aca90c1a05a2462769f2549760bb27c53b1f7a7 100755 (executable)
@@ -30,7 +30,7 @@ test x"$router" != x"" || exec env - sleep "$ping_time"
 failcnt=0
 while true; do
        ping $ping_opts "$router" && exec env - sleep "$ping_time"
-       : $((failcnt++))
+       failcnt=$((failcnt+1))
        msg "Failed to ping $router, fail count:$failcnt"
        test $failcnt -ge $max_fail && break
        env - sleep "$retry_time"
index f5347cc04dd0b2168081f08e323ca9133fd0cbce..df22963f25f9cec8c84aef3f3379f1a10dd80a93 100755 (executable)
@@ -47,7 +47,7 @@ test_mke2fs() {
 kilobytes=60
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = 200 && break
 done
 
@@ -56,7 +56,7 @@ done
 kilobytes=$((1 * 8*1024 - 50))
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = $((1 * 8*1024 + 300)) && break
 done
 
@@ -65,7 +65,7 @@ done
 kilobytes=$((2 * 8*1024 - 50))
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = $((2 * 8*1024 + 400)) && break
 done
 
@@ -74,7 +74,7 @@ done
 kilobytes=$((3 * 8*1024 - 50))
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = $((3 * 8*1024 + 500)) && break
 done
 
@@ -83,7 +83,7 @@ done
 kilobytes=$((4 * 8*1024 - 50))
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = $((4 * 8*1024 + 600)) && break
 done
 
@@ -92,7 +92,7 @@ done
 kilobytes=$((5 * 8*1024 - 50))
 while true; do
     test_mke2fs || exit 1
-    : $((kilobytes++))
+    kilobytes=$((kilobytes+1))
     test $kilobytes = $((5 * 8*1024 + 700)) && break
 done
 exit