Skip to content

Instantly share code, notes, and snippets.

View ciosyam's full-sized avatar

tetr-(a) ciosyam

View GitHub Profile
@rileyjshaw
rileyjshaw / convert.sh
Last active March 22, 2024 11:01
Download all issues of Emigre Magazine from Letterform Archive’s Online Archive
# 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