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 -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -