Skip to content

Instantly share code, notes, and snippets.

View trifo13's full-sized avatar

Trifo Tsantsarov trifo13

  • Bulgaria
View GitHub Profile
@trifo13
trifo13 / bulk-scale-images.sh
Created July 2, 2018 08:13
bulk-scale-images.sh
#!/bin/bash
# Max Width
WIDTH=1200
# Max Height
HEIGHT=800
# Resize .jpg or .png to either height or width, preserve aspect ration:
find . -type f \( -name "*.jpg" -o -name "*.png" \) -exec convert \{} -verbose -resize $WIDTHx$HEIGHT\> \{} \;