|
From: tmacchant <tma...@ya...> - 2015-06-12 20:10:57
|
>#!/bin/bash >set xlabel "start" >set ylabel "Delay" >set autoscale You are confusing gnuplot script and bash shell command. #!/bin/bash declare that this file is bash shell script. You cannot write gnuplot command in bash shell script. Tatsuro -- View this message in context: http://gnuplot.10905.n7.nabble.com/passing-an-argument-to-gnuplot-script-tp94p19528.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |