Gnuplot from a standard shell without entering gnuplot interactive shell -


is possible run gnuplot standard shell without entering gnuplot interactive shell?

i want able type gnuplot commands in 1 line standard shell , able save standard gnuplots aliases. have create .sh files write commands quite terrible.

do mean

echo "plot sin(x)" | gnuplot -p 

or

echo -e "set term png\n set output 'alma.png'\n plot sin(x)\n" | gnuplot 

?

or

echo | gnuplot -p -e "plot sin(x)"  

(last 1 christoph)


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -