Following are the listed methods by which we can increment the variables in shell script in looping statements:
- j=$((i++))
- j=$(( i + 1 ))
- j=`expr $i + 1`
Happy scripting :)
OpenShift is Red Hat's enterprise Kubernetes platform for building, deploying, securing, operating, and scaling containerized applicati...