From aa180b160f8624349acf558fcbae15084e86f7c5 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 5 Jul 2025 13:42:40 +0200 Subject: [PATCH] fix create pdf --- scanbasic.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanbasic.sh b/scanbasic.sh index f0da35b..06f5eb5 100644 --- a/scanbasic.sh +++ b/scanbasic.sh @@ -116,7 +116,7 @@ createpdf() pdfs=$(echo $pdfs "scanned$countno.pdf") done - pdftk "$pdfs" output "$basename$(printf "%03d" $start).pdf" \ + pdftk $pdfs output "$basename$(printf "%03d" $start).pdf" \ || errlog "could not create pdf" \ || return 1 -- 2.47.3