我正在編寫一個腳本來一次繪製多個文件中的多個文件。我也想保存每個對應於數據文件的圖的輸出。我們怎樣才能給GNUPlot兩個參數。例如:示例GNUPlot腳本如何給命令行參數gnuplot
set xlabel "a"
set ylabel "b"
set zlabel "c"
set term postscript
set output "??" #'??' implies variable i.e. take file name from commandline
splot "??" with points,"??" with points #'??' implies variable i.e. take file name from commandline
並且此腳本將由另一個生成所需文件名的shell腳本運行。
任何幫助表示讚賞。
您是否找到'-e'選項的任何官方文檔?我正在尋找幾個小時,仍然沒有運氣。 – Wolf
@Wolf您可以在gnuplot文檔中的「批處理/交互式操作」部分找到它。 – Christoph
@Christoph感謝,但它仍然有點令人困惑:我發現了同一版本的文檔的兩個版本,[批處理/交互操作](http://gnuplot.sourceforge.net/docs_4.2/node46.html)和[批處理/ Interactive_Operation - Gnuplot:交互式繪圖程序](http://soc.if.usp.br/manual/gnuplot-doc/htmldocs/Batch_002fInteractive_005fOperation.html)。這是如此根本,我不能相信爲什麼這些信息是這樣隱藏的。 – Wolf