Posts by alinepegas • 21 points
1 post
-
2
votes2
answers8165
viewsA: Shell Bash, How to pass given from Shel as parameter
There are standard variables that save the parameters you pass to a script. If you run $ ./myscript.sh param1 param2 So, $0 = myscript.sh $1 = param1 $2 = param2…