Created
July 26, 2024 14:42
-
-
Save dkesberg/53fafe1a3497676e9295a865f34a9965 to your computer and use it in GitHub Desktop.
Generate peview images for all pdf in current directory.
This file contains hidden or 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
#! /bin/bash | |
for file in *.pdf | |
do | |
convert "$file[0]" -quality 100 -flatten "$file.jpg" | |
done | |
rename 's/\.pdf\.jpg/\.jpg/g' *.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment