I'm converting Windows batch script .bat to Linux batch script .sh
What takes time a lot is to change the way .bat script use variables.
i.e.
In Windows
@set varName=122
echo %varName%
In Linux
varName=122
echo $varName
So the question is, how to replace %.+% to $.+ ?
