home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / TOOLS / ACE11B / REACE / REACEALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-11-30  |  1013 b   |  30 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO.
  4. ECHO ------------------------------------------------------------------------
  5. ECHO REACEALL.BAT                                    (C) Juergen Peters, 1997
  6. ECHO ------------------------------------------------------------------------
  7. ECHO Version 0.12                                                  11-01-1997
  8. ECHO ------------------------------------------------------------------------
  9. ECHO.
  10. ::  Batchfile which calls REACE.BAT several times to convert multiple
  11. ::  archives in one run.
  12. ::---------------------------------------------------------------------------
  13. ::
  14. :: If a parameter is given, proceed to execution, otherwise give a short
  15. :: syntax help.
  16. IF NOT %1!==! GOTO Continue
  17. ::
  18. :: Little syntax help, if no parameter given.
  19. ::
  20. ECHO   Syntax:  REACEALL ARCHIVE(S)                       (wildcards allowed)
  21. ECHO.
  22. GOTO End
  23. ::
  24. :Continue
  25. ::
  26. :: Convert all archives in a FOR recursion.
  27. FOR %%X IN (%1) DO CALL REACE.BAT %%X %2 %3 %4 %5 %6 %7 %8 %9
  28. ::
  29. :End
  30.