Skip to content

Instantly share code, notes, and snippets.

@markedphillips
Created September 9, 2019 08:22
Show Gist options
  • Save markedphillips/531bc091209b332814e6332652025ae4 to your computer and use it in GitHub Desktop.
Save markedphillips/531bc091209b332814e6332652025ae4 to your computer and use it in GitHub Desktop.
function preview_pdf () {
if [ $1 = "" ]; then
echo "Need filename."
else
convert $1 /var/TMP/output.jpg
imgcat /var/TMP/output*.jpg;
echo "cleaning up"
rm -f /var/TMP/output*.jpg;
# ls /var/TMP/output*.jpg;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment