guide-preparation-vacances/markdown/creer-chapitres-markdown.sh

9 lines
134 B
Bash
Raw Normal View History

#!/bin/bash
for section in {1..3}
do
for chapitre in {1..4}
do
touch chapitre_${section}_${chapitre}.md
done
done