I have a shell script and when invoking it ./test
it asks for an input.I 've seen a quicker way just by writing at once ./test myInput
,how is that achievable?
|
||||
|
You can access the command line arguments in your shell script with the special variables If you need access more than 9 command line arguments, you can use the Please remember to put the arguments inside doubles quotes (e.g. |
|||||||||
|