Skip to content
Snippets Groups Projects
Select Git revision
  • b43cea390c0e0b552bb655757c8c6b123afb40d5
  • main default protected
  • dev protected
  • feature/sound
  • v1.0.1
  • v1.0.0
6 results

TileConfig.cpp

Blame
  • eisgenerator_plot 308 B
    #!/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"