Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for f in *.pdf
  4. do
  5.   PDFS=$PDFS"$f "
  6. done
  7.  
  8. # PDFS=$PDFS
  9. # pdfjoin $PDFS
  10.  
  11. gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/default -dNOPAUSE -dQUIET -dBATCH -sProcessColorModel=DeviceCMYK -dDetectDuplicateImages -dCompressFonts=true -r150 -o output.pdf $PDFS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement