GTU OS Program - 8

8. Write a shell script to read n numbers as command arguments and sort them in descending order.

Complete code of the program

  1. read -p "Enter the number of values you want to sort " n
  2.  
  3. for((i=0; i<$n; i++))
  4. do
  5. read -p "Enter value of arr[$i]: " arr[$i]
  6. done
  7. #sorting code
  8. for((i=0; i<$n; i++))
  9. do
  10. for((j=0; j<n-i-1; j++))
  11. do
  12. if [ ${arr[j]} -lt ${arr[$((j+1))]} ]
  13. then
  14. #swapping
  15. temp=${arr[j]}
  16. arr[$j]=${arr[$((j+1))]}
  17. arr[$((j+1))]=$temp
  18. fi
  19. done
  20. done
  21.  
  22. echo "Numbers sorted in descending order as"
  23. echo ${arr[*]}
  24.  

Interpreting the sort.sh file and executing it in terminal

  1. tkanu025@hp:~/lab_solutions$ chmod +x sort.sh
  2. tkanu025@hp:~/lab_solutions$ ./sort.sh
Output
gtu study material best gtu study material for engineering students

gtu os lab manual,

os GTU Practical,

operating system Programs,

Operating system shellscript programs,

Gtu study material 3140705,

OS 3140702,

os practical list,

shell script programming,

gtu os practical,

os lab solution gtu

Comments

YouTube

Popular posts from this blog

GTU OOP Program - 17 tic-tac-toe

GTU OS Program - 11 Filters

GTU OOP Program - 18