home *** CD-ROM | disk | FTP | other *** search
/ Tools en Utilities / CDASS_5.ISO / shell / file / apndit10.arj / EXAMPLE.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-09-11  |  1019 b   |  21 lines

  1. The following is an example batch file for using Append-It on a BBS to create
  2. a master file listing, this example is also shown within the APPENDIT.DOC file
  3. included in the Append-It archive, note that this is only an example and will
  4. require modifications in order to work properly with your system setup. Please
  5. read the APPENDIT.DOC file for complete installation and operation instructions
  6. for using Append-It version 1.0.
  7. -------------------------------------------------------------------------------
  8.                            EXAMPLE APPEND-IT BATCH FILE
  9.                             * MODIFICATIONS REQUIRED *
  10.  
  11. ECHO OFF
  12. CD\BBS\APPENDIT
  13. APPENDIT D:\FILES\UPLOADS\FILES.LST + D:\FILES\DOSUTILS\FILES.LST
  14. APPENDIT C:\BBS\APPENDIT\APPENDIT.NEW + D:\FILES\GAMES\FILES.LST
  15. APPENDIT C:\BBS\APPENDIT\APPENDIT.NEW + D:\FILES\WINDOWS\FILES.LST
  16. REN APPENDIT.NEW MASTER.LST
  17. COPY MASTER.LST D:\FILES\UPLOADS
  18. DEL MASTER.LST
  19.  
  20. -------------------------------------------------------------------------------
  21.