First commit, original contents of "bin"-folder.

This commit is contained in:
2024-07-02 13:35:53 +02:00
parent 1557cf924f
commit 5b1400de91
17 changed files with 420 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
echo "<html><head><title>Images</title></head><body>" > index.html
for f in `ls`
do
convert -size 200x400 $f -resize 200x400 thumb-$f
echo "<a href=\"$f\"><img src=\"thumb-$f\" /></a>" >> index.html
done
echo "</body></html>" >> index.html