home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / I265.ZIP / r_bkup4.cmd < prev    next >
OS/2 REXX Batch file  |  1992-08-05  |  399b  |  14 lines

  1. /* BKUP4.CMD
  2.    Backup daily working files to diskette at the end of the day
  3. */
  4. '@echo off'
  5.  
  6. /* Clear the screen and remind user to put a disk in */
  7. 'cls'
  8. say 'Put a disk in drive A'
  9. say 'and press Enter when ready'
  10. pull .
  11. 'copy \work\docfiles\*.txt a:' /* Backup working doc files */
  12. 'copy '\reports\xfiles\*.txt a:' /* Backup daily report files */
  13. say 'Backup is complete on drive A'
  14.