home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Backup / Backup.zip / psnsg601.zip / adsm.cmd next >
OS/2 REXX Batch file  |  1999-10-05  |  685b  |  22 lines

  1. /* -------------------------------------------------- */
  2. /* Title:               adsm.cmd                      */
  3. /*                                                    */
  4. /* Author:              J.Cobb                        */
  5. /*                                                    */
  6. /* Change History:      11/11/1997 - Created JAC      */
  7. /*                                                    */
  8. /* Function:            Unpaks the adsm device file   */
  9. /* -------------------------------------------------- */
  10.  
  11. Parse arg path
  12.  
  13. file = 'adsmos2.pak'
  14. zipfile = path || '\' || file
  15.  
  16. Command = '@unpack' zipfile path 
  17. Command
  18. Command = '@del' zipfile
  19. Command
  20. Exit
  21.  
  22.