用shell向gnuplot传参
程序员文章站
2022-03-29 22:48:05
...
1、编写gnuplot脚本如下
#!/usr/bin/gnuplot
print "$#"
print "$0"
print "$1"
2、在终端输入命令 gnuplot -c test.gnu 1 2,通过 shell 给 gnuplot 传参,结果
[email protected]:/home/my# gnuplot -c test.gnu 1 2
test.gun
1
2
3、试了 echo "call \"test.gnu\" \"1\" \"2\"" | gnuplot,效果相同
上一篇: idea项目打包上传到阿里云
下一篇: 图像处理之边缘检测