Skip to content

Instantly share code, notes, and snippets.

@junquera
Created May 16, 2016 13:00
Show Gist options
  • Select an option

  • Save junquera/e4ad38c621bb2e9fb8fe2f0d54e2117a to your computer and use it in GitHub Desktop.

Select an option

Save junquera/e4ad38c621bb2e9fb8fe2f0d54e2117a to your computer and use it in GitHub Desktop.
Generate a file thumbnail
#!/bin/bash
oFilename=$(basename "$1")
extension="${oFilename##*.}"
filename="${oFilename%.*}"
if [ "$extension" == "pdf" ]; then
convert -thumbnail 300 "$oFilename"[0] "$filename".thumb.png
else
convert -thumbnail 300 "$oFilename" "$filename".thumb.png
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment