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

  1. /* -------------------------------------------------- */
  2. /* Title:               invtape.cmd                   */
  3. /*                                                    */
  4. /* Author:              J.Cobb                        */
  5. /*                                                    */
  6. /* Change History:      14/01/1998 - Created JAC      */
  7. /*                                                    */
  8. /* Function:            Deletes the .sys files        */
  9. /* -------------------------------------------------- */
  10.  
  11. Parse arg path
  12.  
  13. file1 = 'ADSMSDID.SYS'
  14. file2 = 'ADSMTAPE.SYS'
  15.  
  16. filepath1 = path || '\' || file1
  17. filepath2 = path || '\' || file2
  18.  
  19. Command = '@del' filepath1
  20. Command
  21. Command = '@del' filepath2
  22. Command
  23. Exit
  24.  
  25.