0
是否有可能從標準外殼運行gnuplot而無需進入gnuplot交互式shell?從標準外殼Gnuplot沒有進入gnuplot交互式shell
我只想在我的標準shell中能夠在一行中鍵入我的gnuplot命令,並且能夠將標準gnuplot保存爲別名。目前,我必須創建.sh文件,我寫我的命令是非常可怕的。
是否有可能從標準外殼運行gnuplot而無需進入gnuplot交互式shell?從標準外殼Gnuplot沒有進入gnuplot交互式shell
我只想在我的標準shell中能夠在一行中鍵入我的gnuplot命令,並且能夠將標準gnuplot保存爲別名。目前,我必須創建.sh文件,我寫我的命令是非常可怕的。
你的意思
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)"
(由克里斯托夫最後一個)
無需使用'echo':'gnuplot的-p -e 「情節的sin(x)」' – Christoph
@Christoph你是對的。但你的意思是'回聲| gnuplot -p -e「plot sin(x)」'不是嗎? –
太棒了!正是我需要的。 – vpJohan