Skip to content

Instantly share code, notes, and snippets.

@dkesberg
Created July 26, 2024 14:42
Show Gist options
  • Save dkesberg/53fafe1a3497676e9295a865f34a9965 to your computer and use it in GitHub Desktop.
Save dkesberg/53fafe1a3497676e9295a865f34a9965 to your computer and use it in GitHub Desktop.
Generate peview images for all pdf in current directory.
#! /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