by Juergen Wieferink <wieferink@[EMAIL PROTECTED]
>
May 29, 2008 at 08:57 AM
Yrbgol wrote:
> On May 27, 11:40 pm, Juergen Wieferink <wiefer...@[EMAIL PROTECTED]
> wrote:
[...]
>> plot '-'
>> 1
>> 2
>> 3
>> 5
>> 2
>> 4
>> e
>>
>> Juergen
>
> This is similar to what I want. However, I don't want it to be
> interactive. With one command I want to be able to plot the numbers.
> If you look at my example above that should give you an idea.
[...]
This is not the way gnuplot is designed. The only thing that comes
to my mind is to "fake" the above commands within one line as in
this bash pipe:
echo -e "plot '-'\n1\n2\n3\n5\n2\n4\ne" | gnuplot -persist
It's ugly, but for a noninteractive access to gnuplot, this should
not matter.
Juergen