1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
awesome-attractor/batchexport.sh

14 lines
274 B
Bash

CANVEXT=".canv"
PNGEXT=".png"
CANVPATH="canvas/"
PNGPATH="render/"
cd $CANVPATH
for FILE in `ls *$CANVEXT | sed -e 's/'$CANVEXT'$//'`
do
../bin/Debug/AwesomeAttractor -c ../$CANVPATH$FILE$CANVEXT 3200 3200 3 ../$PNGPATH$FILE$PNGEXT
#Do other stuff with file
done