I would like to plot data points included inside a script file. This should be done multiple times (plotting to different files). Therefore, I am using a do-for-loop.
This loop let's Gnuplot freeze on excution. Could you please hint me to the cause?
This is my MWE:
reset
set autoscale
do for [index=1:1] {
plot "-" with lines ls 2 notitle
0.500 5
1.000 6
1.500 7
e
}