Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for cd-cat.bat

(view source code of cd-cat.bat as plain text)

  1. @echo off
  2.  
  3. if %4.==. for %%f in (0 1 2 3 4 5 6 7 8 9) do call %0 %1 %2 %3 %4 %%f
  4. if %4.==. goto end
  5.  
  6. :ok
  7. if exist %1%2%3%4.txt goto end
  8. dir/s/a w:\ >%1%2%3%4.txt
  9. echo Disc %1%2%3%4 complete;
  10. echo hit ^C, or insert the next disk and
  11. pause
  12. goto end
  13.  
  14. :error
  15. :end
  16.  
  17.  

page last modified: 2024-02-26; loaded in 0.0124 seconds