blob: 4e1160032f262514cac2b38829df97ffca72a5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -o monitor
./build-debug.sh
cp position.blank position.txt
linuxcnc $1 > test.log &
python machine_setup.py $2
fg
./save_lengths.sh test.log
#if [ -a length_data.log ]
#then
#octave/plot_movement.m
#fi
|