Skip to content

Instantly share code, notes, and snippets.

@purplefish32
Created October 4, 2012 12:54
Show Gist options
  • Save purplefish32/3833371 to your computer and use it in GitHub Desktop.
Save purplefish32/3833371 to your computer and use it in GitHub Desktop.
Generates a JPEG thumbnail from a PDF file
#!/bin/sh
for i in `find . -name "*.pdf"`;
do
filename=$(basename $i | sed 's/\.[^.]*$//')
$(convert $filename.pdf[0] -resize 150x203 $filename.jpeg)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment