Sunday, January 5, 2014

Incriment variable in linux shell

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 :)

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

#Linux Commands Unveiled: #date, #uname, #hostname, #hostid, #arch, #nproc

 #Linux Commands Unveiled: #date, #uname, #hostname, #hostid, #arch, #nproc Linux is an open-source operating system that is loved by millio...