Write a shell script whose purpose is to order three numbers
in ascending order. The user is supposed to enter the three numbers
as arguments.
- Test to make sure three arguments are entered.
If there are not three arguments prompt for all three
- Use nested if's to make the comparisons
- Display the numbers in increasing order.
- Solution