Created
July 1, 2018 13:55
-
-
Save BacLuc/b286c24f09e63eb9decd078a6daceb41 to your computer and use it in GitHub Desktop.
merge pdfs of single info for scout camp with common infos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DIR="Einzelne" | |
DIR_MERGED="Einzelne-merged" | |
for filename in $(ls $DIR); do | |
FROM=$DIR/$filename | |
TO=$DIR_MERGED/$filename | |
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$TO $FROM lagerinfo_notfallblatt.pdf | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment