Skip to content

Instantly share code, notes, and snippets.

@samverneck
Created April 14, 2017 17:11
Show Gist options
  • Select an option

  • Save samverneck/a6908541aac4f3ccb4d33b194087f547 to your computer and use it in GitHub Desktop.

Select an option

Save samverneck/a6908541aac4f3ccb4d33b194087f547 to your computer and use it in GitHub Desktop.
#!/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