setup bash in ms termial code example
Example 1: bash equivalent of /?
# EXAMPLE
man grep
# SYNTAX
man <command-to-get-help-on>
Example 2: add bash command
a=`expr "$a" + "$num"`
a=$(($a+$num))
((a=a+num))
let a=a+num
((a+=num))
# EXAMPLE
man grep
# SYNTAX
man <command-to-get-help-on>
a=`expr "$a" + "$num"`
a=$(($a+$num))
((a=a+num))
let a=a+num
((a+=num))