We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$((..))
$[..]
n=1 n=$[n+1]
n=1 n=$((n+1))
The $[..] syntax was deprecated in Bash 2.0 and replaced with the standard $((..)) syntax from Korn shell
None.