Command Line Arguments in Linux Shell Scripting

Channel: Linux
Abstract: ~$ chmod +x command_line_agruments.sh Now execute the scripts with command line arguments [email protected]~$ ./command_line_agruments.sh Linux AIX HP
Overview :

Command line arguments (also known as positional parameters) are the arguments specified at the command prompt with a command or script to be executed. The locations at the command prompt of the arguments as well as the location of the command, or the script itself, are stored in corresponding variables. These variables are special shell variables. Below picture will help you understand them.

Let’s create a shell script with name 「command_line_agruments.sh」, it will show the command line argruments that were supplied and count number of agruments, value of first argument and Process ID (PID) of the Script.

[email protected]:~$ cat command_line_agruments.sh

Assign Executable permissions to the Script
[email protected]:~$ chmod +x command_line_agruments.sh
Now execute the scripts with command line arguments
[email protected]:~$ ./command_line_agruments.sh Linux AIX HPUX VMware
There are 4 arguments specified at the command line.
The arguments supplied are: Linux AIX HPUX VMware
The first argument is: Linux
The PID of the script is: 16316
Shifting Command Line Arguments

The shift command is used to move command line arguments one position to the left. During this move, the first argument is lost. 「command_line_agruments.sh」 script below uses the shift command:

[email protected]:~$ cat command_line_agruments.sh

Now Execute the Script again.
[email protected]:~$ ./command_line_agruments.sh Linux AIX HPUX VMware
There are 4 arguments specified at the command line
The arguments supplied are: Linux AIX HPUX VMware
The first argument is: Linux
The Process ID of the script is: 16369
The new first argument after the first shift is: AIX
The new first argument after the second shift is: HPUX
[email protected]:~$

Multiple shifts in a single attempt may be performed by furnishing the desired number of shifts to the shift command as an argument.

Ref From: linuxtechi

Related articles