This commit is contained in:
2026-06-06 22:09:00 +02:00
parent a80187ba80
commit 27c0dae20e
9 changed files with 315 additions and 69 deletions
+5
View File
@@ -14,6 +14,11 @@ for file in *.pdf; do
# Handle case where no pdfs exist
[ -e "$file" ] || continue
if [ "$file" = "enonce.pdf" ]; then
echo "Skipping: $file"
continue
fi
# Rename with 0-padding (e.g., Copie01.pdf)
mv -- "$file" "$(printf "Copie%02d.pdf" "$count")"
((count++))