1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-15 06:54:04 +02:00

mech/doit: store cameo job in temporary file, for easier debugging

This commit is contained in:
Werner Almesberger 2011-09-05 05:53:00 -03:00
parent e67eab1aa1
commit 96cd3dd4fd

View File

@ -33,7 +33,7 @@ while [ $yi -lt $YN ]; do
xi=0
while [ $xi -lt $XN ]; do
cameo <<EOF || exit
cat <<EOF >_job
mm
gnuplot $MILL front.gp
@ -58,6 +58,9 @@ offset
append mill.gp
EOF
cameo _job || exit
rm -f _job
write=append
xi=`expr $xi + 1`
done