Skip to content

Instantly share code, notes, and snippets.

View damascenodiego's full-sized avatar
🧮

CDN (Diego) Damasceno damascenodiego

🧮
View GitHub Profile
@damascenodiego
damascenodiego / flattening_pdf.sh
Created September 8, 2021 06:28
Command to flatten PDF files and retain the image quality
#!/bin/sh
mkdir out
pdf2ps $1 - | ps2pdf - $1.tmp
mv $1.tmp out/$1
# References:
## https://unix.stackexchange.com/a/162925