9 lines
No EOL
134 B
Bash
9 lines
No EOL
134 B
Bash
#!/bin/bash
|
|
|
|
for section in {1..3}
|
|
do
|
|
for chapitre in {1..4}
|
|
do
|
|
touch chapitre_${section}_${chapitre}.md
|
|
done
|
|
done |