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

  1. yECHO OFF
  2. CLS
  3. ECHO.
  4. ECHO ------------------------------------------------------------------------
  5. ECHO REACEALL.BTM for 4DOS 5.x                       (C) Juergen Peters, 1997
  6. ECHO ------------------------------------------------------------------------
  7. ECHO Version 0.12                                                  11-01-1997
  8. ECHO ------------------------------------------------------------------------
  9. ECHO.
  10. ::  Batchfile which calls REACE.BTM 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. IFF %1!==! THEN
  17. ::
  18. :: Little syntax help, if no parameter given.
  19. ::
  20. ECHO   Syntax:  REACEALL ARCHIVE(S)                       (wildcards allowed)
  21. ECHO.
  22. QUIT
  23. ELSE
  24. ::
  25. :: Convert all archives in a FOR recursion.
  26. FOR %%X IN (%1) CALL REACE.BTM %%X %2&
  27. ENDIFF
  28.