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.

  1. Test to make sure three arguments are entered.
    If there are not three arguments prompt for all three
  2. Use nested if's to make the comparisons
  3. Display the numbers in increasing order.
  4. Solution