comparison scripts/bulkconvert.bat @ 11:2ec81711f0c7

Move python files to this repo
author Paper <mrpapersonic@gmail.com>
date Wed, 26 Jan 2022 20:36:07 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 11:2ec81711f0c7
1 if "%1" == "" (
2 echo usage: %0 ^<version^>
3 exit /b
4 )
5
6 for %%i in (*.veg) do (
7 python3 msvpvf.py -i "%%i" --version %1 --type veg
8 )
9
10 pause