home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / dos / tools / inter47 / combine.bat < prev    next >
DOS Batch File  |  1995-06-04  |  437b  |  15 lines

  1. @echo off
  2. for %%a in (a b c d e f g h i j k l m) do if not exist interrup.%%a goto missing
  3. echo Combining the pieces of the interrupt list
  4. echo.
  5. copy interrup.a interrup.lst >nul
  6. for %%a in (b c d e f g h i j k l m) do copy /b interrup.lst+interrup.%%a interrup.lst >nul
  7. echo The interrupt list has now been combined into INTERRUP.LST
  8. goto end
  9.  
  10. :missing
  11. echo Some sections of the interrupt list are missing.
  12. goto end
  13.  
  14. :end
  15.