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