This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Move the results into their own folder, drag that parent folder into imageOptim, `cd` into it, then: | |
for d in Issue\ */; do | |
cd "$d" | |
convert -compress jpeg -quality 33 -resize 2388x2388\> *.jpg "../${d%/}.pdf" | |
cd .. | |
done |