Created
October 14, 2014 12:31
-
-
Save thykka/aebdd2397138f84a37dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script combines multiple pdf-files into one, | |
| # then compresses it to fit two pages into one. | |
| # pdfjam must be installed. | |
| pdfjoin --outfile /tmp/pdfs-joined.pdf $@ | |
| pdfnup --landscape --nup 2x1 --paper a4paper --outfile ./$1-merged.pdf /tmp/pdfs-joined.pdf | |
| rm /tmp/pdfs-joined.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment