Skip to content

Instantly share code, notes, and snippets.

@ostapel
ostapel / gist:5d87dcd9772f405ef1d5
Last active August 29, 2015 14:06
Parallel run via batch file
echo "Arg 1 is"%1%
echo "Arg 2 is"%2%
IF "%1"=="" (
echo "Argument: browser was not set"
exit -1
)
IF "%2"=="" (
echo "Argument: N of executors was not set. 2 or 4 are supported"
set FORKS="4"