Using argument variables:
Argument variable starts from $0. The main script file name is stored in $0 which receives argument values from command line arguments. If two arguments are passed in command line then the argument values will be received in $1 and $2 variables sequentially.
Example -1: Sending three numeric values as arguments
Create a bash file and add the following code. The script will receive three argument values and store in $1, $2 and $3. It will count the total number of arguments, print argument values with loop and without loop. Lastly, print the sum of all argument values.
# Counting total number of arguments
echo "Total number of arguments : $#"
# Reading argument values individually
echo "First argument value : $1"
echo "Second argument value : $2"
echo "Third argument value : $3"
# Reading argument values using loop
for argval in "$@"
do
echo -n "$argval "
done
# Adding argument values
sum=$(($1+$2+$3))
# print the result
echo -e "nResult of sum = $sum"
Run the bash file with three numeric argument values.
Example -2: Taking filename as argument
Create a bash file and add the following code to count the total number of characters of any file. Here, filename will be passed as command line argument.
filename=$1
totalchar=`wc -c $filename`
echo "Total number of characters are $totalchar"
Run the bash script with the filename as single argument value and run another command to check the total number of characters of that file. Here, employee.txt file is used as argument value. Total number of characters of employee.txt file is 204.
$ wc -c employee.txt
Using getopts function:
If you want to store data in database or any file or create a report on particular format based on command line arguments values then getopts function is the best option to do the task. It is a built-in linux function. So, you can easily use this function in your script to read formatted data from command line.
Example -1: Reading arguments by getopts function
Create a bash file and add the following script to understand the use of getopts function. ‘getopts’ function is used with while loop to read command line argument options and argument values. Here, 4 options are used which are ‘i’, ‘n’, ‘m’ and ‘e’. case statement is used to match the particular option and store the argument value in a variable. Finally, print the values of the variable.
while getopts ":i:n:m:e:" arg; do
case $arg in
i) ID=$OPTARG;;
n) Name=$OPTARG;;
m) Manufacturing_date=$OPTARG;;
e) Expire_date=$OPTARG;;
esac
done
echo -e "n$ID $Name $Manufacturing_date $Expire_daten"
Run the file with the following options and argument values. Here, p100 is the value of -i option, ‘Hot Cake’ is the value of -n option, ’01-01-2018′ is the value of -m option and ’06-01-2018′ is the value of -e option.
When you need to send simple values in a script then it is better to use argument variables. But if you want to send data in a formatted way then it is better to use getopts function to retrieve argument values. For more information watch the video!