This script takes three numbers as command line arguments and prints the biggest number. It first checks that three arguments are provided, then assigns each to a variable and compares them using conditionals to determine which is largest, printing the result. If the numbers are equal, it prints a special message, and if it cannot determine the largest, it prints an error.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
28 views1 page
Shell
This script takes three numbers as command line arguments and prints the biggest number. It first checks that three arguments are provided, then assigns each to a variable and compares them using conditionals to determine which is largest, printing the result. If the numbers are equal, it prints a special message, and if it cannot determine the largest, it prints an error.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Q.2.Write Script to find out biggest number from given three nos.
Nos are supplies as
command line argument. Print error if sufficient arguments are not supplied. A. Q2. Script to find out bigest number Algo: 1) START: Take three nos as n1,n2,n3. 2) Is n1 is greater than n2 and n3, if yes print n1 is bigest no goto step 5, otherwise goto next step 3) Is n2 is greater than n1 and n3, if yes print n2 is bigest no goto step 5, otherwise goto next step 4) Is n3 is greater than n1 and n2, if yes print n3 is bigest no goto step 5, otherwise goto next step 5) END if [ $# -ne 3 ] then echo "$0: number1 number2 number3 are not given" >&2 exit 1 fi n1=$1 n2=$2 n3=$3 if [ $n1 -gt $n2 ] && [ $n1 -gt $n3 ] then echo "$n1 is Bigest number" elif [ $n2 -gt $n1 ] && [ $n2 -gt $n3 ] then echo "$n2 is Bigest number" elif [ $n3 -gt $n1 ] && [ $n3 -gt $n2 ] then echo "$n3 is Bigest number" elif [ $1 -eq $2 ] && [ $1 -eq $3 ] && [ $2 -eq $3 ] then echo "All the three numbers are equal" else echo "I can not figure out which number is biger" fi
Q.16. How To Write Script, That Will Print, Message "Hello World", in Bold and Blink Effect, and in Different Colors Like Red, Brown Etc Using Echo Command
Q.16. How To Write Script, That Will Print, Message "Hello World", in Bold and Blink Effect, and in Different Colors Like Red, Brown Etc Using Echo Command