How to Increment variable in Bash

PHOTO EMBED

Thu May 05 2022 09:35:21 GMT+0000 (Coordinated Universal Time)

Saved by @Rohith #bash

i=$((i+1))

((i=i+1))

let "i=i+1"
content_copyCOPY

https://linuxize.com/post/bash-increment-decrement-variable/