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

  1. /* -------------------------------------------------- */
  2. /* Title:               Prebasei.cmd                  */
  3. /*                                                    */
  4. /* Author:              J.Cobb                        */
  5. /*                                                    */
  6. /* Change History:      10/2/1998 - Created JAC       */
  7. /*                                                    */
  8. /* Function:            Renames files we dont want to */
  9. /*                      copy over                     */
  10. /* -------------------------------------------------- */
  11.  
  12. parse arg targetpath
  13.  
  14. targetpath = targetpath || '\SYSTEM\'
  15.  
  16. 'copy' targetpath || 'RESTORE.MTH' targetpath || 'RESTORE.TMP'
  17. 'copy' targetpath || 'BACKUP.MTH' targetpath || 'BACKUP.TMP'
  18. 'copy' targetpath || 'DON!T_40.PSR' targetpath || 'DON!T_40.TMP'
  19. 'copy' targetpath || 'RULEBO2K.PSR' targetpath || 'RULEBO2K.TMP'
  20. 'copy' targetpath || 'I640.INI' targetpath || 'I640.TMP'
  21. 'copy' targetpath || 'I1024.INI' targetpath || 'I1024.TMP'
  22.  
  23.