If you know this in shell script your life is easy
There is one thing which we often get confuse in shell script, especially for those who are new to shell scripting
The difference between $var, ${var} and $(var)
echo $var
echo ${var}
echo $(var)
I try to keep the concept as simple as that so that ...
bhavithc.hashnode.dev2 min read