Intro to bash
Bash is a shell, or commend language interpreter, for the GNU operating system
Example. $USER and $PWD are variables
echo “print” # to print something
val=1
val=$((val+1)) # it increases the value by 1
We can use let val+=1 to increase its value
...
codingashish.hashnode.dev1 min read