Skip to content

Instantly share code, notes, and snippets.

@probil
Created June 12, 2015 13:48
Show Gist options
  • Save probil/b1ee5098493634f5292c to your computer and use it in GitHub Desktop.
Save probil/b1ee5098493634f5292c to your computer and use it in GitHub Desktop.
convert all pdf files in dir to jpg (imagemagic required)
for i in `ls *.pdf`; do convert "$i" "$i".jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment