Initial commit

This commit is contained in:
2024-07-11 08:57:22 +00:00
commit b914df0c92
158 changed files with 611 additions and 0 deletions

13
Cmd/resize_images.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# example:
# sh resize_images.sh ./Game "*.PNG" 50%
IMAGES=$(find $1 -type f -name $2)
for image in $IMAGES
do
echo $image
magick $image -resize $3 $image
done