Q. How do I write Shell Script to print number in descending order Ans: #!/bin/bash echo "enter maximum number" read n # taking in...Read more »

The Magician Of Linux
Q. How do I write Shell Script to print number in descending order Ans: #!/bin/bash echo "enter maximum number" read n # taking in...Read more »
Q. How do I write Bubble sort in Bash Ans: #!/bin/bash echo "enter maximum number" read n # taking input from user echo "ente...Read more »