-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2007
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
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.