annotate scripts/bulkconvert.sh @ 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 #!/bin/bash
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2 for i in *.veg; do
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
3 [ -f "$i" ] || break
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
4 python3 msvpvf.py -i "$i" --version 13 --type veg
2ec81711f0c7 Move python files to this repo
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
5 done