Answers for "add bash command"

0

add bash command

a=`expr "$a" + "$num"`

a=$(($a+$num))

((a=a+num))

let a=a+num

((a+=num))
Posted by: Guest on February-18-2021
0

how to define command in bash

alias yourVariable='cd /Home/yourFolder'
Posted by: Guest on December-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language