ardupilot/Tools/Replay/plotit.sh

27 lines
453 B
Bash
Raw Normal View History

#!/bin/bash
2014-01-05 01:38:09 -04:00
cmd="plot "
echo $#
while [ $# -gt 1 ]; do
if [[ "$1" == *.* ]]; then
cmd="$cmd 'plot.dat' using 1:'$1',"
else
cmd="$cmd 'plot2.dat' using 1:'$1',"
fi
2014-01-05 01:38:09 -04:00
shift
done
if [[ "$1" == *.* ]]; then
cmd="$cmd 'plot.dat' using 1:'$1'"
else
cmd="$cmd 'plot2.dat' using 1:'$1'"
fi
echo $cmd
2014-01-05 01:38:09 -04:00
cat <<EOF > _plot.gnu
set style data lines
set xlabel "time(s)"
$cmd
pause -1 "hit return to exit"
2014-01-05 01:38:09 -04:00
EOF
gnuplot _plot.gnu