Write a Shell Script to find the largest among the 3 given numbers using if...else
echo "Enter first number: "
read a
echo "Enter second number: "
read b
echo "Enter third number: "
read c
if [ $a -ge $b -a $a -ge $c ]
then
echo "a is max"
fi
if [ $b -ge $a -a $b -ge $c ]
then
echo "b is max"
fi
if [ $c -ge $a -a $c -ge $b ]
then
echo "c is max"
fi