Add merge-pdf

A simple script to merge multiple pdfs into one.
This commit is contained in:
Alexander Kobjolke 2022-03-31 09:09:38 +02:00
parent f8b1104f74
commit 89a05dec8d

8
home/local/bin/merge-pdf Executable file
View file

@ -0,0 +1,8 @@
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p ghostscript
#
# Local Variables:
# mode: sh
# End:
gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=- -dBATCH "$@"