git-svn-id: http://svn.clifford.at/openscad/trunk@550 b57f626f-c46c-0410-a088-ec61d464b74c
9 lines
173 B
Bash
Executable file
9 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
|
|
SCRIPTDIR=`dirname $0`
|
|
|
|
mkdir -p output
|
|
for f in examples/*.scad; do
|
|
echo `basename $f .scad`
|
|
$SCRIPTDIR/create-stl.sh $f output/`basename $f .scad`.stl
|
|
done
|