You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

antRun.bat 201 B

123456789101112131415161718
  1. @echo off
  2. cd %1
  3. set ANT_RUN_CMD=%2
  4. shift
  5. shift
  6. set PARAMS=
  7. :loop
  8. if "%1" == "" goto runCommand
  9. set PARAMS=%PARAMS% %1
  10. shift
  11. goto loop
  12. :runCommand
  13. echo %ANT_RUN_CMD% %PARAMS%
  14. %ANT_RUN_CMD% %PARAMS%