nevereverever.de/articles/random-linux-utils.md

21 lines
544 B
Markdown
Raw Normal View History

2025-12-08 21:49:11 +01:00
---
title: Random linux utilities
subtitle: Neat things I picked up along the way
2026-01-09 18:49:25 +01:00
author: Never
2025-12-08 21:49:11 +01:00
date: 25.7.2025
2025-12-15 23:39:45 +01:00
summary: Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.
2025-12-08 21:49:11 +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 doesn't rasterize and scales down
the pdf files.
2025-12-15 23:39:45 +01:00
```bash
2025-12-08 21:49:11 +01:00
gs -dNOPAUSE -sDEVICE=pdfwrite \
-sOUTPUTFILE=output.pdf \
-dBATCH 1.pdf 2.pdf
```