欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用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,效果相同

 

 

 

 

 

相关标签: gnuplot