You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
274 B
15 lines
274 B
15 years ago
|
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
|
||
|
|
||
|
|