guide-preparation-vacances/creer-chapitres-markdown.sh
2021-07-11 18:20:57 -04:00

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