Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 713 Bytes

File metadata and controls

50 lines (33 loc) · 713 Bytes

Lab Shebang

  • Take me to the Lab
  1. Solution is given below

    Print Numbers from 31 to 40

  2. Solution is given below

    Prints {31..40}

  3. Solution is given below

      #!/bin/bash
      for i in {31..40}
      do
              echo $i
      done
    
  4. Solution is given below

     print_number4.sh
    
  5. Solution is given below

    #!/bin/bash
    echo {1..10}