#!/bin/csh -f

# Download a roll of Mystic Color Lab photos, assuming 1.jpg has
# already been downloaded to correct location.  Arguments are the
# cookie number, the explict code number for the roll and the number
# of the last exposure.

set count = 1

while ($count < $3)
@ count++
  netscape  -remote "openURL(http://mystic.photonet.com/cgi-pv/sendimg.pl/Nor/$1/MYGREE$2/$count.jpg)"
echo "mysticdl: Awaiting carriage return in shell to initiate next download."
$<
end
