diff --git a/eisgenerator_plot b/eisgenerator_plot
new file mode 100755
index 0000000000000000000000000000000000000000..5558854afc28f8106696ac9f4c81234bb0b154db
--- /dev/null
+++ b/eisgenerator_plot
@@ -0,0 +1,13 @@
+#!/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"