Skip to content

Instantly share code, notes, and snippets.

@cwarden
Created July 22, 2011 19:03
Show Gist options
  • Select an option

  • Save cwarden/1100148 to your computer and use it in GitHub Desktop.

Select an option

Save cwarden/1100148 to your computer and use it in GitHub Desktop.
use imagemagick and qiv to preview and delete pdfs
(IFS=$(echo -e "\n\r"); for i in $(ls -1 *.pdf); do gif=${i%%.pdf}.gif; if [ ! -f $gif ] ; then convert -scale 600x600 $i[0] $gif; fi; done; qiv *.gif; for i in .qiv-trash/*.gif; do x=$(basename $i); wipe -fc ${x%%.gif}.pdf; done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment