Created
May 2, 2026 00:51
-
-
Save schnell18/14d66f5c51873be56c6381968db904a3 to your computer and use it in GitHub Desktop.
Combined pdf files in reverse order by file name
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 | |
| # pdfunite is part of poppler package | |
| # use `brew install poppler` to install | |
| SOURCE_PDFS=$(ls *.PDF | sort -r | xargs) | |
| pdfunite $SOURCE_PDFS combined.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment