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

  1. /* -------------------------------------------------- */
  2. /* Title:               Pstbasei.cmd                  */
  3. /*                                                    */
  4. /* Author:              J.Cobb                        */
  5. /*                                                    */
  6. /* Change History:      10/2/1998 - Created JAC       */
  7. /*                                                    */
  8. /* Function:            Copy renamed files over the   */
  9. /*                      versions we just installed.   */
  10. /* -------------------------------------------------- */
  11.  
  12. parse arg targetpath
  13.  
  14. targetpath = targetpath || '\SYSTEM\'
  15.  
  16. 'copy' targetpath || 'RESTORE.TMP' targetpath || 'RESTORE.MTH'
  17. 'copy' targetpath || 'BACKUP.TMP' targetpath || 'BACKUP.MTH'
  18. 'copy' targetpath || 'DON!T_40.TMP' targetpath || 'DON!T_40.PSR'
  19. 'copy' targetpath || 'RULEBO2K.TMP' targetpath || 'RULEBO2K.PSR'
  20. 'copy' targetpath || 'I640.TMP' targetpath || 'I640.INI'
  21. 'copy' targetpath || 'I1024.TMP' targetpath || 'I1024.INI'
  22. 'del' targetpath || 'RESTORE.TMP'
  23. 'del' targetpath || 'BACKUP.TMP' 
  24. 'del' targetpath || 'DON!T_40.TMP'
  25. 'del' targetpath || 'RULEBO2K.TMP'
  26. 'del' targetpath || 'I640.TMP' 
  27. 'del' targetpath || 'I1024.TMP' 
  28.  
  29. Exit
  30.