home *** CD-ROM | disk | FTP | other *** search
/ CICA 1996 August / CICA2_0896.bin / _bbs / rbbstool / all.bat < prev    next >
DOS Batch File  |  1996-07-17  |  1KB  |  46 lines

  1. @echo off
  2. REM  To run this one batch file, change it here also.
  3. if .%CDROM% == . goto cd_not_set
  4. goto cd_set
  5. :cd_not_set
  6. goto end
  7. :cd_set
  8.  
  9. rem this is where the actual files live
  10. rem this is where you want your index files (full path, with drive)
  11. set output=%CDROM%\_bbs\rbbs
  12.  
  13. REM  I set this globally, in ..\all.bat
  14. REM  To run this one batch file, change it here also.
  15. if .%in_type% == . goto not_set
  16. goto set
  17. :not_set
  18. echo in_type not set
  19. goto end
  20. :set
  21.  
  22. rem you shouldn't have to change anything below this.
  23.  
  24. REM  This is the foreign language stuff.  the default extension is
  25. REM  ".txt"
  26. if .%in_language% == . goto not_set2
  27. goto set2
  28. :not_set2
  29. set in_language=txt
  30. :set2
  31.  
  32. del logfile
  33. del ..\logfile
  34. echo y | del %output%\*.*
  35.  
  36. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit2
  37.  
  38. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit3
  39.  
  40. type makefidx.1 > makefidx.cfg
  41. %cdrom%\_bbs\each_dir 1    \_bbs\dirs.%in_language%   doit4
  42. type makefidx.2 >> makefidx.cfg
  43.  
  44. call makeffs
  45. :end
  46.