Initial import.

This commit is contained in:
2022-02-23 22:55:41 -08:00
commit 41a42c7a59
48 changed files with 1876 additions and 0 deletions

13
cpimg Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -eu
imgdir="content/files/i"
for img in $@
do
imgbase="$(basename $img)"
imgpath="${imgdir}/${imgbase}"
cp $img $imgdir
convert -resize 800x600 "$imgpath" "${imgdir}/t/${imgbase}"
done