#!/bin/sh
#flipit   rotates all *.pbm files in inputlist 180 deg, places in *flip.pbm
for i in `cat inputlist`
do
thisone=`echo $i | sed 's/.pbm//'`
pamflip -r180 $i > ${thisone}flip.pbm
done
