Shell Scripting Tutorials: Special variables


#!/bin/sh

echo "File Name: $0"
echo "First Parameter : $1"
echo "Second Parameter : $2"
echo "Quoted Values: $@"
echo "Quoted Values: $*"
echo "Total Number of Parameters : $#"
Here is a sample run for the above script −

$./test.sh Zara Ali
File Name : ./test.sh
First Parameter : Zara
Second Parameter : Ali
Quoted Values: Zara Ali
Quoted Values: Zara Ali
Total Number of Parameters : 2
Rajesh Kumar
Follow me
Latest posts by Rajesh Kumar (see all)
Subscribe
Notify of
guest
2 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
rakesh
rakesh
11 months ago

thanks for sharing blogs and resources, keep writing blogs that helps no of software developer

rakesh
rakesh
11 months ago

thanks for sharing blogs and resources, keep writing blogs that helps no of software developer

2
0
Would love your thoughts, please comment.x
()
x