write a shell script to find the largest number from 3 given
numbers.
Answer Posted / aseem
Hi Imran,
Could you please run your script with below parameter
4 45 1. It will give the output as "1 is the largest number"
reason is you have used only sort command not sort -nr so it will not sort in reverse order, so in your case head -1 will rather than tail -1.
Hi A,
Regarding your answer you have to run by below way.
say you are keeping your script in file test.sh
then
sh test.sh 43 1 34
Actually it takes the positional parameter so after script whatever input you provide it takes as parameter.
Feel free to send me email aseem02@gmail.com if you have any doubt regarding shell scripting, will glad to help you guys.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Is shell scripting a language?
Why should we use shell scripts?
What is shell geeksforgeeks?
Explain how you Automate your application using Shell scripting.
Is shell scripting useful?
What can scripts do?
What are the disadvantages of shell scripting?
c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
Write the syntax for "if" conditionals in linux?
What does $0 mean in shell script?
Explain about login shell?
Which scripting language is best for automation?
What is the significance of $#?
What command needs to be used to take the backup?
How will you copy a file from one machine to other?