Results 1 to 4 of 4

Thread: Combining pdf files from multiple directories in alphabetical order

  1. #1
    Join Date
    Mar 2014
    Beans
    33

    Combining pdf files from multiple directories in alphabetical order

    I have a directory with multiple sub-directories that contain pdf files of job applicants. The files in each subdirectory are Lastname_cv.pdf, Lastname_letter.pdf, and other files that I don't need at this point. I want to combine all the pdfs that refer to applicants' cv and letter, in alphabetical order, with the cv of each applicant first, and the letter second. So, an example would be having two subdirectories A and B, where in A I have A_cv.pdf and A_letter.pdf; in B I have B_cv.pdf and B_letter.pdf. Is there a way in which I can combine all these files so that I get a single file All_documents.pdf that has the files just mentioned in the order A_cv, A_letter, B_cv, B_letter?

    I'm using Ubuntu 18.04.

    Thanks

  2. #2
    Join Date
    Mar 2011
    Location
    U.K.
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Combining pdf files from multiple directories in alphabetical order

    I can think of two approaches to try ..

    (a) install pandoc and then use command line to concatenate files of a given type.

    e.g. https://gist.github.com/xuanlongma/5564190

    (b) PDFshuffler in Software Centre

  3. #3
    Join Date
    Mar 2014
    Beans
    33

    Re: Combining pdf files from multiple directories in alphabetical order

    Thanks for the suggestions. I ended up using pdftk. I first copied all relevant files into a temporal directory (using cp ../Applications/*/*_cv.pdf . and cp ../Applications/*/*_letter.pdf .) and then I combined them using pdftk (pdftk *.pdf cat output all_applicants.pdf)

  4. #4
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,793

    Re: Combining pdf files from multiple directories in alphabetical order

    I use pdfshuffler for these kind of jobs.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •