#
# My first shell script
#

i=239
while [ $i -gt 92 ]
do
   echo "$i"
   a=`expr $i + 1`
   echo "$a"
   mv $i.pdf $a.pdf
   i=`expr $i - 1`
done

