From 154d526fa62d216ed9543ba77022185aa5b2d627 Mon Sep 17 00:00:00 2001 From: litter Date: Sun, 1 Mar 2020 12:45:31 -0500 Subject: [PATCH] Fixed the pages export script. Proper echo statement --- scripts/pages.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/pages.sh b/scripts/pages.sh index 66dd623..08cf50c 100644 --- a/scripts/pages.sh +++ b/scripts/pages.sh @@ -10,13 +10,10 @@ DPI=1440 #Location of generated pages PAGE_FILES="~/Desktop/page_*.tif" -echo "Changing calibration files to ${DPI}dpi..." +echo "Changing exported page files to ${DPI}dpi..." for f in $PAGE_FILES do - name=$(basename "$f" .tif) - #echo $name - echo "Converting $f..." + echo "Converting ${f} to ${DPI}dpi..." mogrify $f -units PixelsPerInch -density $DPI - rm $f done \ No newline at end of file