nevereverever.de/articles/random-linux-utils
2026-02-05 02:08:10 +01:00

21 lines
No EOL
1.3 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Random linux utilities
Neat things I picked up along the way
Never
25.7.2025
────────────────────
MERGE PDFS
Using Ghostscript
Ghostscript has a feature to merge multiple pdf files into one. Although
ImageMagick also has this feature, I prefer this one, as it doesnt
rasterize and scales down the pdf files.
gs -dNOPAUSE -sDEVICE=pdfwrite \
 -sOUTPUTFILE=output.pdf \
 -dBATCH 1.pdf 2.pdf
]8;;\