loader image
Teachics

Shell script to find greatest of three numbers

Linux shell program/script to find greatest of three numbers

echo "Enter three Integers:"
read a b c
if [ $a -gt $b -a $a -gt $c ]
then
echo "$a is Greatest"
elif [ $b -gt $c -a $b -gt $a ]
then
echo "$b is Greatest"
else
echo "$c is Greatest!"
fi
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments