upload the project

This commit is contained in:
2026-06-21 21:24:47 +02:00
parent 8cf419a907
commit d94790cbe5
113 changed files with 1327 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/etc/profiles/per-user/tomasr/bin/zsh bash
DIR="./Images"
for file in "$DIR"/*.png; do
[ -e "$file" ] || continue
name=$(basename "$file")
if [[ ! "$name" =~ ^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])-[0-9]{2}[flt]\.png$ ]]; then
echo "$name"
fi
done