Fixed the pages export script. Proper echo statement

This commit is contained in:
litter 2020-03-01 12:45:31 -05:00
parent b39de15f52
commit 154d526fa6
1 changed files with 2 additions and 5 deletions

View File

@ -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