嗨,我正在尝试编写一个使用 gnuplot 进行绘图的 shell 脚本,但我一直遇到错误:bash: ./plot.sh: usr/bin/gnuplot: bad interpreter: No such file or directory
我检查了位置“usr/bin/gnuplot”,它确实存在。我还检查了文件的权限,它是可执行的。我还检查了我是否可以通过解释器手动打开 gnuplot,这里没有遇到任何问题。
以下是我的文件:
#!usr/bin/gnuplot
reset
set terminal png
set output 'test.png'
set key inside left top vertical Right noreverse enhanced autotitles box linetype -1 linewidth 1.000
set samples 200, 200
set title "Arc trig"
set xlabel "x"
set ylabel "y"
set grid
plot [-3:5] asin(x),acos(x)
我正在运行 Ubuntu 12.10。
任何想法都将不胜感激。谢谢。
答案1
漏掉了“/”#!/usr/bin/gnuplot