Write a Shell Script to read n numbers as command arguments and sort them in descending order
Write a Shell Script to read n numbers as command arguments and sort them in descending order echo "Enter N" …
May 16, 2023Write a Shell Script to read n numbers as command arguments and sort them in descending order echo "Enter N" …
Masti With Coding May 16, 2023Write a Shell Script which will print the following menu and execute the given task? a) Display calendar of current mon…
Masti With Coding May 16, 2023Write a Shell Script to find first n Fibonacci numbers like: 0 1, 1, 2, 3, 5, 13 echo "Enter Range" read numb…
Masti With Coding May 16, 2023Write a Shell Script to check whether the given string is palindrome or not echo "Enter String" read String s…
Masti With Coding May 16, 2023Write a Shell Script to print the pyramid structure for the given number echo "Enter size of pyramid :" read …
Masti With Coding May 16, 2023Write a Shell Script in which will accept a number n and display first m prime numbers as output? echo "enter star…
Masti With Coding May 16, 2023Write a Shell Script to check whether a given number is prime or not echo "Enter number" read number prime=1 …
Masti With Coding May 16, 2023