home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / adcut01.zip / run.cmd < prev   
OS/2 REXX Batch file  |  1998-07-29  |  295b  |  18 lines

  1. @echo off
  2.  
  3. if "%1" == "" GOTO ERROR
  4.  
  5. :START
  6. for %%a in (%1\*.zip) do adcut.exe %%a
  7. goto end
  8.  
  9. :ERROR
  10. echo Advert Cutter/2 Multiple File Script
  11. echo.
  12. echo Command line error, please enter the
  13. echo directory as the first parameter.
  14. echo example: run.cmd c:\archives
  15. goto end
  16.  
  17. :END
  18.