I just learned that I could use chmod make myscript.sh executable and the run it as $ ./myscript.sh But how can I attach a custom command to it, like $ connectme [options] ?
|
|
You need to do two things:
A completely different approach. Most shells support aliases. You could define one to run your script. Note: The environment variable
resulting for me in
which are the usual directories for binaries. You can add a new path element with (in /
in
either of which which will result in the shell also searching Fianlly, the use of a " |
|||||
|
|
You need to learn about arguments in BASH PROGRAMMING. Here is a good tutorial on them. Check section #4 out. Basically, you need to use special variables $1, $2, $3 to refer to first, second and third command line arguments respectively. Example:
With myscript.sh being:
Will print:
|
|||||||
|