home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 7 / POWERCD7.ISO / prgmming / inter43 / combine.bat < prev    next >
DOS Batch File  |  1994-08-07  |  433b  |  15 lines

  1. @echo off
  2. for %%a in (a b c d e f g h i j k l) 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) 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.