mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-21 12:37:49 +00:00
7 lines
213 B
Bash
7 lines
213 B
Bash
mkdir -p optimised
|
|
for file in original/*; do
|
|
echo $file
|
|
base_name=$(basename $file)
|
|
convert ${file} -resize "200x200^>" -gravity center -crop 200x200+0+0 -quality 89 optimised/${base_name}
|
|
done
|