Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 .dat 文件的最后一行设置我的 gnuplot 图表的标题,但我不确定该怎么做。
我的 .dat 文件内容如下:
Column1 Column2 1 0.5 2 1.5 3 2.5 4 3.5 5 4.5 6 5.5 Average is ??????
有人知道使用最后一行的文本设置标题的命令吗?
gnuplot 允许 shell 样式的反引号扩展。将它与 unix 实用程序结合起来tail应该可以正常工作:
tail
set title "`tail -1 myfile.dat`" plot 'myfile.dat' u 1:2