forked from lapikud/lapikud.github.io
* brought over mentors form data and images * add contact information to mentors * add image conversion scripts * optimised current images
7 lines
173 B
Bash
7 lines
173 B
Bash
mkdir -p optimised
|
|
for file in original/*; do
|
|
echo $file
|
|
base_name=$(basename $file)
|
|
convert ${file} -resize "200x200^>" -quality 89 optimised/${base_name}
|
|
done
|