So I can use pdftk just fine (its a command line program to combine pdfs), however I want to come up with a way so that it combines the pages and always put the pdf ending in Summary as the first page.
My files are in the following format:
(Address) Summary.pdf
(Address) Top FG.pdf
(Address) Roof.pdf
(Address) Flashing.pdf
And there can be a few more, but it is always in this format but obviously the addresses always change. I just want it to put the page ending in Summary as the first page, the rest of the order I don't care about.
I know pdftk can combine like this:
pdftk (Address) Summary.pdf (Address) Top FG.pdf (Address) Roof.pdf (Address) Flashing.pdf cat output Combined.pdf
and this would work and put the summary page first, but how I can make a batch script to due this because obviously the address always changes and doing it manually would defeat the purpose. I have an idea in my head how it should work just haven't been able to get it to work.