generated from amasson/UnrealEngineProject
14 lines
178 B
Bash
Executable File
14 lines
178 B
Bash
Executable File
#!/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
|
|
|