From fb2b3591aa832dce5d8d9295d444fbe3909980de Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 12 May 2023 17:11:08 +0200 Subject: Clean out unused stuff --- bin/a4copy | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 bin/a4copy (limited to 'bin/a4copy') diff --git a/bin/a4copy b/bin/a4copy deleted file mode 100755 index de45664..0000000 --- a/bin/a4copy +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -usage() -{ -echo "Usage: a4copy [Lineart|Gray|Color]" -} - -#test to see if the mode and a filename have been entered -if [ $# -lt 1 ] ; then usage ; exit 1 ; fi -mode=$1 - -echo Now scanning your A4 document to pdf - -#scan the A4 binary(b&w) file uncompressed at 300dpi to temporary file -scanimage \ - --mode $mode \ - -x 210 -y 296 \ - --resolution 300 \ - --format=tiff > temp-copy.tif - -#convert to pdf with G4 compression -tiff2pdf temp-copy.tif -p A4 -q G4 -o temp-copy.pdf -rm temp-copy.tif - -#print pdf -lpr temp-copy.pdf -- cgit v1.2.1