4 lines
64 B
Bash
4 lines
64 B
Bash
|
for i in {1..10}
|
||
|
do
|
||
|
touch $(printf "chapitre_%02d.md" "$i")
|
||
|
done
|