From 88958dd9efbaecb06e9569b2d3ac436805ef854d Mon Sep 17 00:00:00 2001 From: s416178 Date: Fri, 3 Apr 2020 15:01:01 +0200 Subject: [PATCH] Update plots --- draw_plots.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/draw_plots.sh b/draw_plots.sh index 84eb29e..7a3c493 100644 --- a/draw_plots.sh +++ b/draw_plots.sh @@ -4,7 +4,8 @@ for FILE in "$@" do gnuplot <<- EOF set term png + set title "Graph - ${FILE}" set output "${FILE}.png" - plot "${FILE}.txt" using 1 + plot "${FILE}.txt" using 1 with lines EOF done