🚀 From Python to placements — 90+ courses & 200+ exams, free on Leyaa.ai →

Shell script to find largest of n numbers

Let's write a shell script to find largest of n numbers.




Algorithm

1. Get N

2. Read N numbers using loop

3. Set first number as max.

4. From number 2 onwards update the max value if the number > max.

5. Display the result




Largest of n numbers - Shell Script

#shell script for largest of n numbers
  
echo "Enter Size(N)"
read N

i=1
max=0

echo "Enter Numbers"
while [ $i -le $N ]
do
  read num
  if [ $i -eq 1 ]  #set first number as max
  then
      max=$num
  else             #from number 2 update max if the num > max.
      if [ $num -gt $max ]
      then
        max=$num
      fi
  fi
  i=$((i + 1))  #increment i by 1
done

echo $max



Output

Enter Size(N)

5

Enter Numbers

123

4

56

78

34

123

Enter Size(N)

5

Enter Numbers

1

2

3

4

5

5


🚀 One platform. 90+ coding courses. 200+ exams.

From programming fundamentals to competitive exam prep — learn with intelligence, not just content. Free on Leyaa.

Explore Leyaa.ai Free →

Topics You Might Like