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