summaryrefslogtreecommitdiff
path: root/graphit
diff options
context:
space:
mode:
Diffstat (limited to 'graphit')
-rwxr-xr-xgraphit8
1 files changed, 5 insertions, 3 deletions
diff --git a/graphit b/graphit
index 177c040..f40ab2e 100755
--- a/graphit
+++ b/graphit
@@ -1,6 +1,8 @@
#! /usr/bin/gnuplot
-name=system("echo $data")
-set title name
-plot name with linespoints notitle
+filename=system("echo $data")
+set title filename
+set key outside
+#plot name with linespoints notitle
+plot for [col=1:3] filename using 0:col with lines notitle
pause -1