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 --- init.d/moused.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'init.d/moused.in') diff --git a/init.d/moused.in b/init.d/moused.in index a41005ff..cdcf36ad 100644 --- a/init.d/moused.in +++ b/init.d/moused.in @@ -54,7 +54,7 @@ start() local ttyv= for ttyv in /dev/ttyv*; do vidcontrol < "$ttyv" -m on - : $((retval+= $?)) + : $(( retval += $? )) done fi -- cgit v1.2.3