nevereverever.de/public_ansi/random-linux-utils

21 lines
1.3 KiB
Text
Raw Permalink Normal View History

2026-02-05 02:08:10 +01:00
Random linux utilities
Neat things I picked up along the way
Never
2026-02-11 22:20:11 +01:00
2025-07-25
2026-02-05 02:08:10 +01:00
────────────────────
2026-02-05 01:42:49 +01:00
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 \
2026-02-05 02:08:10 +01:00
 -dBATCH 1.pdf 2.pdf
]8;;\