add bash command code example
Example 1: add bash command
a=`expr "$a" + "$num"`
a=$(($a+$num))
((a=a+num))
let a=a+num
((a+=num))
Example 2: how to define command in bash
alias yourVariable='cd /Home/yourFolder'
a=`expr "$a" + "$num"`
a=$(($a+$num))
((a=a+num))
let a=a+num
((a+=num))
alias yourVariable='cd /Home/yourFolder'