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>
This commit is contained in:
@@ -34,7 +34,7 @@ arping_address()
|
||||
while [ ${w} -gt 0 -a -z "${foundmac}" ]; do
|
||||
foundmac="$(arping2 ${opts} -r -c 1 -i "${IFACE}" "${ip}" 2>/dev/null | \
|
||||
sed -e 'y/abcdef/ABCDEF/')"
|
||||
w=$((${w} - 1))
|
||||
: $(( w -= 1 ))
|
||||
done
|
||||
else
|
||||
[ -z "$(_get_inet_address)" ] && opts="${opts} -D"
|
||||
|
||||
Reference in New Issue
Block a user