Skip to content

Instantly share code, notes, and snippets.

@alex-pat
Created September 25, 2016 14:59
Show Gist options
  • Save alex-pat/88fb6f64e2d17f1783e1e365f9af8ab3 to your computer and use it in GitHub Desktop.
Save alex-pat/88fb6f64e2d17f1783e1e365f9af8ab3 to your computer and use it in GitHub Desktop.
all tiffs to pdf
for i in *.tif
do
tiff2pdf "$i" -o "${i%.*}.pdf"
rm "$i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment