home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Backup / Backup.zip / bacrest.zip / tape.cmd < prev    next >
OS/2 REXX Batch file  |  1999-10-05  |  739b  |  23 lines

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