Joining pdf files
Combining multiple pdfs into a single file can be handy for putting together one big final report or for submitting a single print job instead of multiple smaller ones. Joining pdfs in a Debian based Linux distribution can be easily done by using the pdfjoin utility. It is provided by the pdfjam package. One only needs to
sudo aptitude install pdfjam
Then all that needs to be done is cd-ing into the folder containing the large number of pdfs and running:
pdfjoin *.pdf –outfile out.pdf
There you go, instant pdf!
horrible!