Comment on I got sick of PDFsam Pro ads and built a free PDF merger that runs entirely in your browser
tal@lemmy.today 1 week ago
My Linux distro already comes with a PDF merger.
$ for i in ($seq 1 5); do echo $i >$i.txt; pandoc -o $i.pdf $i.txt; done
Now I’ve got five PDF files to merge.
$ pdfunite *.pdf merged.pdf