Created
April 14, 2017 17:11
-
-
Save samverneck/a6908541aac4f3ccb4d33b194087f547 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| mkdir provas | |
| cd provas | |
| for i in {1..6} | |
| do | |
| mkdir per$i | |
| cd per$i | |
| for j in {1..8} | |
| do | |
| touch p$j.txt | |
| done | |
| cd .. | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment