当前位置: 技术问答>linux和unix
写了一小段shell脚本调用gnuplot的程序,出了问题
来源: 互联网 发布时间:2017-05-16
本文导语: 不是很懂shell脚本,通过调用gnuplot从数据源文件里画折线图的程序,大家帮忙看下 #!/bin/sh file1=$1 file2=$2 line1=wasu line2=latest if [ $# -eq 2 ] then echo " se t png set output "jp.png" ...
不是很懂shell脚本,通过调用gnuplot从数据源文件里画折线图的程序,大家帮忙看下
#!/bin/sh
file1=$1
file2=$2
line1=wasu
line2=latest
if [ $# -eq 2 ]
then
echo "
se t png
set output "jp.png"
set term pngcairo size 1080,700
set datafile separator ","
plot "$file1" using 1:2 title "$line1" w l lt 3,"$file2" using 1:2 title "$line2" w l lt 2
" | gnuplot
fi
|
试试6楼和9楼的代码