home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 274.GIFV.SLH < prev    next >
Text File  |  1993-02-17  |  385b  |  15 lines

  1. ;
  2. ; GIFV.SLH
  3. ; This routine will take all GIF files in the current directory and
  4. ; create BMP files. It will then delete all of the GIF files. This will
  5. ; in effect convert your GIF files to BMP files leaving behind no GIF files!
  6. ;
  7.         change-path *.gif
  8. :loop
  9.         loadnext    :exit
  10.         write       B
  11.         goto        :loop
  12. :exit
  13.         system del *.gif
  14.  
  15.