From ef1ff1b4f29762d1caf83dc2b65ccfc7cb96e140 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 10 Nov 2011 21:46:08 -0500 Subject: 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 --- net/ip6to4.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/ip6to4.sh') diff --git a/net/ip6to4.sh b/net/ip6to4.sh index 0e94293f..45644507 100644 --- a/net/ip6to4.sh +++ b/net/ip6to4.sh @@ -51,7 +51,7 @@ ip6to4_start() case "${ip}" in 172.${i}.*) break;; esac - i=$((${i} + 1)) + : $(( i += 1 )) done [ ${i} -lt 32 ] && continue ;; @@ -90,7 +90,7 @@ ip6to4_start() # Now apply our config eval config_${config_index}=\'"${new}"\' - config_index=$((${config_index} - 1)) + : $(( config_index -= 1 )) # Add a route for us, ensuring we don't delete anything else local routes="$(_get_array "routes_${IFVAR}") -- cgit v1.2.3