4G_module/tools/scripts/do_check.bat

8 lines
158 B
Batchfile
Raw Permalink Normal View History

2024-09-02 17:54:29 +08:00
::created by xgl,2019/1/24
:param
@set str=%~1
@if "%str%"=="" (goto end)
@for %%a in (%str%) do @if NOT exist out\%%a (md out\%%a)
@shift /0
@goto param
:end