annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
1 if "%1" == "" (
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2 echo usage: %0 ^<version^>
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
3 exit /b
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
4 )
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
5
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
6 for %%i in (*.veg) do (
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
7 python3 msvpvf.py -i "%%i" --version %1 --type veg
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
8 )
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
9
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
10 pause