mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
17 lines
338 B
Batchfile
17 lines
338 B
Batchfile
|
@echo off
|
||
|
|
||
|
set NaturalDocsParams=
|
||
|
|
||
|
rem Shift and loop so we can get more than nine parameters.
|
||
|
rem This is especially important if we have spaces in file names.
|
||
|
|
||
|
:MORE
|
||
|
if "%1"=="" goto NOMORE
|
||
|
set NaturalDocsParams=%NaturalDocsParams% %1
|
||
|
shift
|
||
|
goto MORE
|
||
|
:NOMORE
|
||
|
|
||
|
perl NaturalDocs %NaturalDocsParams%
|
||
|
|
||
|
set NaturalDocsParams=
|