mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-04-09 05:14:16 +00:00
* brought over mentors form data and images * add contact information to mentors * add image conversion scripts * optimised current images
9 lines
209 B
Bash
9 lines
209 B
Bash
#!/usr/bin/env bash
|
|
|
|
mkdir -p optimised
|
|
for file in original-jpg-converted/*; do
|
|
echo $file
|
|
base_name=$(basename $file)
|
|
convert ${file} -resize "1000x1000>" -quality 89 optimised/${base_name}
|
|
done
|