4

是否可以使用创建日期和时间来命名我的 gnuplot 输出文件?我目前创建的文件集名称如下:

     set term post eps color
     set output '/path/dateandtime.eps'
     plot
     set term x11
4

2 回答 2

4

You can use the builtin function time to get the current timestamp and strftimeto format it:

set output strftime('/path/%F_%H-%M-%S.eps', time(0))
于 2013-10-14T07:39:00.033 回答
3

您可以使用以下命令将外部命令的输出作为字符串获取system

#!/usr/bin/env gnuplot

date = system("date +%F.%H.%M.%S")
set term ...
set output '/path/'.date.'.eps'
plot

.运算符连接字符串。

于 2013-10-14T01:58:09.420 回答