Created
June 12, 2015 13:48
-
-
Save probil/b1ee5098493634f5292c to your computer and use it in GitHub Desktop.
convert all pdf files in dir to jpg (imagemagic required)
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
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