Created
March 26, 2012 01:41
-
-
Save fabiorecife/2202169 to your computer and use it in GitHub Desktop.
MS DOS - merge multiple pdfs
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
| @ECHO OFF | |
| FOR /D %%A IN (*) DO ( | |
| ECHO PROCESSANDO %%A | |
| cd "%%A" | |
| ..\pdftk *.pdf cat output "%%A".pdf | |
| ECHO FIM DO PROCESSAMENTO | |
| cd .. | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment