Q. How do I write shell script to find Smallest and Greatest number in an array Ans: #!/bin/bash echo "enter size of an array" rea...Read more »

The Magician Of Linux
Q. How do I write shell script to find Smallest and Greatest number in an array Ans: #!/bin/bash echo "enter size of an array" rea...Read more »
Q. How to use array in Bash for taking input and displaying it Ans: #!/bin/bash for((i=0;i do echo "enter `expr $i + 1` number" re...Read more »