I'm new to batch and I haven't mastered the syntax yet, I want to know what exactly the following bat does that runs a stress test on a web service.
if [%1] NEQ [] goto connumclientes
estresador 5 -jar estresador.jar Client
goto fin
:connumclientes
if [%2] NEQ [] goto connumsolicitudes
estresador %1 -jar estresador.jar Client
goto fin
:connumsolicitudes
if [%3] NEQ [] goto conrmihost
estresador %1 -jar estresador.jar Client %2
goto fin
:conrmihost
estresador %1 -jar estresador.jar Client %2 %3
:fin
What do the numbers with the symbol mean %
?