#!/bin/csh -f
# This is a simple Photo-CD viewer. You need xv.
# Go into the image directory of the Photo-CD
#
#
foreach i (img*)
  echo $i
  hpcdtoppm -2 -a $i | xv -quick24 -
end
