set i = 1
while ( $i < = 300 )
mv accom.$i.rgb accom2.$i.rgb
echo did $i
@ i += 1
end
#  12.08.92 Keven Fedirko v1.00
#  This is a very crude and simple example of one way to rename a sequence of
#  image files to another name.  Perhaps one day this will be written to
#  be interactive, but for now, at least every file doesn't have to be done by
#  hand.  The first two lines set a variable "i" which is the start and end
#  frames of the sequence.  The third line should be modified by the user to
#  include the sequence name to be renamed.  The echo line prints each time a
#  file has been done, and the fifth line increments each frame by one.  This
#  can be very useful for doing post-processing of images, and compositing.
#  Juggling files in this manner is very quick (but be careful!).
