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.
18 lines
323 B
18 lines
323 B
15 years ago
|
ATTREXT=".attr"
|
||
|
CANVEXT=".canv"
|
||
|
ATTRPATH="attr/"
|
||
|
CANVPATH="canvas/"
|
||
|
|
||
|
cd $ATTRPATH
|
||
|
|
||
|
for FILE in `ls *$ATTREXT | sed -e 's/'$ATTREXT'$//'`
|
||
|
do
|
||
|
../bin/Debug/AwesomeAttractor -a ../$ATTRPATH$FILE$ATTREXT 500 ../$CANVPATH$FILE$CANVEXT 800 600 3
|
||
|
#Do other stuff with file
|
||
|
done
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
zip -r canvae.zip $CANVPATH*$CANVEXT
|
||
|
|