We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(
for (i=0; i<10; i++)) do echo $i done
for ((i=0; i<10; i++)) do echo $i done
ShellCheck found an arithmetic for ((;;)) expression where either the (( or the )) did not come as a pair. Make sure to use (( )) and not ( ).
for ((;;))
((
))
(( ))
( )
None.
There was an error while loading. Please reload this page.