Shell script command line arguments in linux / unix
What are command line arguments Command line arguments are the values that are supplied to a shell script as input while executing it from the command line. Using command line arguments your script can read values directly from command line or terminal. Command line arguments are also called positional parameters. Command line arguments make a shell script dynamic and maintainable in that you can execute a shell script with different values supplied from outside and you do not need to write them inside the script. This means that for each set of values, you do not need to go and change the script. Passing argumentsRead More →