> > I keep getting this error: > -bash: command substitution: line 1: syntax error near unexpected token > `2300+$i' > -bash: command substitution: line 1: `eval(2300+$i)' > > Is there a way to do this? # eval(2300+$i) -bash: syntax error near unexpected token `2300+$i' # echo $(( 2300 + $i )) 2301