Skip to content
Snippets Groups Projects
Commit ac215850 authored by Carl Klemm's avatar Carl Klemm
Browse files

add ploting script (requires gnuplot in path)

parent 8c65cb13
Branches
Tags
No related merge requests found
#!/bin/sh
if ! command -v eisgenerator_export &> /dev/null
then
echo "eisgenerator_export is required in \$PATH"
exit
elif ! command -v gnuplot &> /dev/null
then
echo "gnuplot is required in \$PATH"
exit
fi
eisgenerator_export -q $@ | gnuplot -p -e "set datafile separator ','; plot '-' using 2:3 w l"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment