home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / demos / euro / amev107.lzh / AME / Scripts / AME_Decompress.script < prev    next >
Encoding:
AmigaDOS Script File  |  1991-11-03  |  559 b   |  20 lines

  1. .key SystemID/a  ; the system ID passed as "SystemID" variable from AME
  2.  
  3. ; AME Decompression Script
  4.  
  5. delete AMEWork:#?                    ; clear out old packet information
  6.                                 ; from last packet
  7.  
  8. copy AMEPacket:<SystemID>.QWK AMEWork:<SystemID>.ZIP
  9.                                 ; get a packet to work with
  10.                                 ; rename original packet for ZIP,
  11.                                 ; since it needs .ZIP extension
  12.  
  13. cd AMEWork:                        ; go into work directory
  14.                                 ; UNZIP dumps contents into
  15.                                 ; current directory (the work dir)
  16.  
  17. unzip AMEWork:<SystemID>.ZIP            ; decompress packet with UNZIP
  18.  
  19. ; end of script
  20.