10-Oct-04 (Created: 10-Oct-04) | More in 'CS-Java'

Collecting command line arguments under windows

set CMD_LINE_ARGS=
:setArgs
if ""%1""=="""" goto doneSetArgs
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto setArgs
:doneSetArgs