- Take me to the Lab
-
Solution is given below
Print Numbers from 31 to 40
-
Solution is given below
Prints {31..40}
-
Solution is given below
#!/bin/bash for i in {31..40} do echo $i done
-
Solution is given below
print_number4.sh
-
Solution is given below
#!/bin/bash echo {1..10}