home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLH
- ; This routine will take all GIF files in the current directory and
- ; create BMP files. It will then delete all of the GIF files. This will
- ; in effect convert your GIF files to BMP files leaving behind no GIF files!
- ;
- change-path *.gif
- :loop
- loadnext :exit
- write B
- goto :loop
- :exit
- system del *.gif
-