home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / XBBS_118.ZIP / SAMPLES.ZIP / NEWS.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-12-08  |  591 b   |  22 lines

  1. REM Echo off
  2. lineed C:\XBBS\NEWS\TEMPNEWS.TMP     -B%1 -T%2 -C0 -L%4 -G%3 -S0 -W%5 -M2
  3. if EXIST C:\xbbs\news\tempnews.tmp goto GotIt
  4. goto END
  5. :GotIt
  6. MessChek c:\xbbs\news\tempnews.tmp
  7. if ERRORLEVEL == 1 goto BadNews
  8. if "%6" == "%7" goto NoLast
  9. Echo    -- %6 %7 >> c:\xbbs\news\tempnews.tmp
  10. goto LogIt
  11. :NoLast
  12. Echo    -- %6 >> c:\xbbs\news\tempnews.tmp
  13. :LogIt
  14. Log XBBS.LOG Entered news file
  15. ren c:\xbbs\news\tempnews.tmp %8.nws
  16. goto END
  17. :BadNews
  18. Echo Try releasing your caps lock key, bozo.  Ignoring your worthless text... > COM1
  19. del c:\xbbs\news\tempnews.tmp
  20. :END
  21. Exit
  22.