summaryrefslogtreecommitdiff
path: root/net/ifconfig.sh.BSD.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-11-10 21:46:08 -0500
committerMike Frysinger <vapier@gentoo.org>2011-11-19 02:25:36 -0500
commitef1ff1b4f29762d1caf83dc2b65ccfc7cb96e140 (patch)
treef1ebb65eec6eb156a0fba737bcd5386af2a9ebfe /net/ifconfig.sh.BSD.in
parent0510c473d4cd9097401e3a7bc236b0121977b81d (diff)
downloadopenrc-ef1ff1b4f29762d1caf83dc2b65ccfc7cb96e140.tar.gz
openrc-ef1ff1b4f29762d1caf83dc2b65ccfc7cb96e140.tar.bz2
openrc-ef1ff1b4f29762d1caf83dc2b65ccfc7cb96e140.tar.xz
make shell math operations style more succulent
Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'net/ifconfig.sh.BSD.in')
-rw-r--r--net/ifconfig.sh.BSD.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ifconfig.sh.BSD.in b/net/ifconfig.sh.BSD.in
index c0c75f0..15c8fb8 100644
--- a/net/ifconfig.sh.BSD.in
+++ b/net/ifconfig.sh.BSD.in
@@ -38,7 +38,7 @@ _ifindex()
echo "${x#/dev/net}"
return 0
fi
- i=$((${i} + 1))
+ : $(( i += 1 ))
done
;;
default)
@@ -47,7 +47,7 @@ _ifindex()
echo "${i}"
return 0
fi
- i=$((${i} + 1))
+ : $(( i += 1 ))
done
;;
esac