annotate scripts/bulkconvert.bat @ 12:59501244594c

Happy new year!
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Fri, 04 Feb 2022 23:11:17 -0500
parents 2ec81711f0c7
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