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 -------------------------- bin/git_diff | 16 ---------------- bin/pdfscan | 33 --------------------------------- 3 files changed, 75 deletions(-) delete mode 100755 bin/a4copy delete mode 100755 bin/git_diff delete mode 100755 bin/pdfscan (limited to 'bin') 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 diff --git a/bin/git_diff b/bin/git_diff deleted file mode 100755 index a35fc68..0000000 --- a/bin/git_diff +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -# un-comment one diff tool you'd like to use -# -# From https://stackoverflow.com/a/7669988/3805440, thanks - -# side-by-side diff with custom options: -/usr/bin/sdiff -w200 -l "$2" "$5" - -# using kdiff3 as the side-by-side diff: -#/usr/bin/kdiff3 "$2" "$5" - -# using Meld -#/usr/bin/meld "$2" "$5" - -# using VIM -#/usr/bin/nvim -d "$2" "$5" diff --git a/bin/pdfscan b/bin/pdfscan deleted file mode 100755 index 5b71b30..0000000 --- a/bin/pdfscan +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh - -usage() -{ -echo "Usage: pdfscan [Lineart|Gray|Color] [resolution] " -} - -#test to see if the mode and a filename have been entered -if [ $# -lt 3 ] ; then usage ; exit 1 ; fi -mode=$1 -resolution=$2 -name=$3 - -#read output of help command to get scanner device name -#scanner=`scanimage --help | tail --lines=1 ` - -echo Now scanning your A4 document to pdf -#echo Now scanning your A4 document on $scanner - -#scan the A4 binary(b&w) file uncompressed at 300dpi to temporary file -#scanimage -d $scanner \ -scanimage \ - --mode $mode \ - -x 210 -y 296 \ - --resolution $resolution \ - --format=tiff > temp-$name.tif - -#convert to pdf with G4 compression -tiff2pdf temp-$name.tif -p A4 -q G4 -o $name.pdf -rm temp-$name.tif - -#display pdf -okular $name.pdf -- cgit v1.2.1