Skip to content

Instantly share code, notes, and snippets.

@schnell18
Created May 2, 2026 00:51
Show Gist options
  • Select an option

  • Save schnell18/14d66f5c51873be56c6381968db904a3 to your computer and use it in GitHub Desktop.

Select an option

Save schnell18/14d66f5c51873be56c6381968db904a3 to your computer and use it in GitHub Desktop.
Combined pdf files in reverse order by file name
#!/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