guide-preparation-vacances/markdown/creer-chapitres-markdown.sh
2021-07-04 20:21:31 -04:00

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