home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / CO / CO009B.ZIP / WILD-TD.LZH / BACKUP.BAT < prev    next >
DOS Batch File  |  1991-03-01  |  421b  |  13 lines

  1. REM this example file assumes you have put WILDCAT!
  2. REM in a directory named WILDCAT! and have a subdir
  3. REM named BACKUP below it.  It copies all database
  4. REM files, creates a text file of the files copied,
  5. REM and writes the text file to the end of the activity log.
  6. ECHO OFF
  7. COPY *.IDX \WILDCAT!\BACKUP
  8. COPY *.DAT \WILDCAT!\BACKUP
  9. DIR \WILDCAT!\BACKUP\*.* >BACKUP.DAT
  10. COPY ACTIVITY.LOG+BACKUP.DAT
  11. CAT.BAT
  12.  
  13.