home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / INTHLP10.ZIP / ADDTOPIC.BAT next >
DOS Batch File  |  1994-11-11  |  947b  |  31 lines

  1.     @ECHO off
  2.  
  3.     IF "%2" == ""  GOTO help
  4.  
  5.     ECHO --------!---%1----------------------- >> interrup.lst
  6.     COPY interrup.lst + %2 interrup.lst
  7.     GOTO done
  8.  
  9. :HELP
  10.     ECHO.
  11.     ECHO                        Interrupt Helper ADDTOPIC utility
  12.     ECHO.
  13.     ECHO                                                 by Gary Chanson
  14.     ECHO                                                 (C) 1994
  15.     ECHO.
  16.     ECHO         Adds additional topic entries to Ralf Brown's INTERRUP.LST.
  17.     ECHO.
  18.     ECHO     usage:
  19.     ECHO.
  20.     ECHO         ADDTOPIC title_text source_file
  21.     ECHO.
  22.     ECHO     WARNING:
  23.     ECHO.
  24.     ECHO         Any text which contains lines of dashes as topic separators
  25.     ECHO         must conform to the INTERRUPT.LST separator format or INTERHLP
  26.     ECHO         will fail during mapping.  If troble is experienced, change
  27.     ECHO         these lines to some other character!
  28.     ECHO.
  29.  
  30. :DONE
  31.