blob: f49a1a5132b6b25adb8de1bc5478f7966956091e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#! /bin/bash
# resize photos and put them in a subdirectory
# default is 25% but can add in an arg later
# check for resize arg in command line
if [ -z $1 ]
then reduce=25
else reduce=$1
re='^[0-9]+$' # reg expression for digits only
if ! [[ $reduce =~ $re ]]
then
echo "Usage: If you use arguments, arg 1 (resize percentage) must be an integer"
exit 1
else
# arg1 is an integer
if [ $reduce -gt 99 ] || [ $reduce -lt 1 ] ; then
echo "Usage: reduction percentage must be between 1 and 99 percent"
exit 1
fi
fi
fi
# Check for folder name in command line (no spaces of course!)
if [ -z $2 ]
then smldir='sml'
else smldir=$2
fi
if [ ! -d $smldir ]
then mkdir $smldir
else echo "Folder \"$smldir\" already exists. No files were altered."; exit 1
fi
# remove spaces from filenames
perl-rename -v 's/\s/_/g' *
# rename capital JPG to lower case jpg
if [ $(ls -l *.JPG 2> /dev/null | wc -l) -gt 0 ]
then perl-rename -v 's/.JPG$/.jpg/' *.JPG
fi
numpix=$(ls -l *.jpg 2> /dev/null| wc -l)
if [ $numpix -eq 0 ]
then echo "No jpeg files in this folder"
exit 1
fi
for file in *.jpg
do convert ${file} -resize ${reduce}% ${smldir}/sml-${file}
done
echo "${numpix} pictures were reduced to ${reduce}% and stored in ${smldir}."
exit 0
|