home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / mkinterl < prev    next >
Text File  |  1996-10-01  |  262b  |  10 lines

  1. #!/bin/sh
  2.  
  3. # mkinterl - Make a given .gif image interlaced.
  4. # Making .gif images interlaced is good for Netscape users.
  5. # This is a Unix script.
  6. # It takes one argument, the filename of a gif image.
  7.  
  8. cat $1 | giftoppm | ppmtogif -interlace > ${1},x
  9. mv ${1},x $1
  10.