home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / allofus.zip / MAKEBOOK.BAT < prev    next >
DOS Batch File  |  1994-05-21  |  1KB  |  27 lines

  1. REM  To assemble this book into a single file:
  2. REM
  3. REM   PC Users:
  4. REM     1. UNZIP the archive into a new (empty) directory
  5. REM     2. From within that directory, run this batch file (MAKEBOOK)
  6. REM     3. The complete book will have the extension ".DOC"
  7. REM
  8. REM  Macintosh and other non-PC users:
  9. REM     1. Use your word processor to copy and paste text from the
  10. REM        separate files into a single file. The files should be
  11. REM        merged in the following order:
  12. REM             TITLE.TXT followed by the files as listed in
  13. REM             the Table of Contents (CONTENTS.TXT).
  14. REM
  15.  
  16. set bookname=allofus.doc
  17. copy title.txt+contents.txt+preface.txt+glossary.txt part1
  18. copy blessed.txt+accept.txt+control.txt+nobody.txt part2
  19. copy warpeace.txt+nondual.txt+renounce.txt+solitude.txt+dukkha.txt part3
  20. copy underly.txt+secure.txt+fruit.txt+errata.txt+readme.1st part4
  21. copy part1+part2+part3+part4 %bookname%
  22. echo [end] >> %bookname%
  23.  
  24. if exist %bookname% del *.txt
  25. if exist %bookname% del part?
  26. set bookname=
  27.