7 lines
No EOL
111 B
Bash
Executable file
7 lines
No EOL
111 B
Bash
Executable file
# /bin/sh
|
|
|
|
rm -rf out/
|
|
mkdir out
|
|
cd src/
|
|
for i in *.scad; do openscad -o "../out/${i%.*}.stl" "$i"; done
|
|
cd ../ |