mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-30 16:44:20 +00:00
* 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
|