home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / docs / lovelace / mkinterl < prev    next >
Encoding:
Text File  |  1995-03-03  |  262 b   |  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.