I'm trying to tell a shell script information this way (when I execute it via SSH):
bash myscript.sh 'input1' 'input2' 'input3'
However I've no idea on how to convert the inputs 1, 2 and 3 into variables in shell script,
like $var1, $var2 and $var3.
Anybody know how?