blob: 335bfb758a9d0eea1b7aa321df56735d31ec6b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
set -o monitor
#./build-release.sh
cp position.blank configs/position.txt
rm configs/constraints.log
linuxcnc $1 > test.log &
if [ -f "$2" ]
then
FILENAME="../"$2
fi
python machine_setup.py $FILENAME
fg
./process_runlog.sh test.log
#if [ -a movement.log ]
#then
#octave/plot_movement.m
#fi
|