如何在Solaris shell中打印自unix纪元以来的秒数

发布于 2024-08-27 23:39:59 字数 145 浏览 9 评论 0原文

有没有办法使用 unix date 打印自纪元以来的秒数?

如果有办法的话,我愿意使用其他标准 shell 命令

(我使用的是 Solaris,所以没有日期“+”%s”

谢谢

Is there a way to use unix date to print the number of seconds since epoch?

I'm open to using other standard shell commands if there is a way

(I'm using Solaris, so there isn't date "+"%s")

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

白芷 2024-09-03 23:39:59
perl -e 'print time'
perl -e 'print time'
半窗疏影 2024-09-03 23:39:59

好吧,由于这是一个编程网站,我只会编译类似的内容:

#include <stdio.h>
#include <time.h>
int main (void) {
    printf ("%d\n",time(0));
    return 0;
}

:-)

Well, since this is a programming site, I would just compile something like:

#include <stdio.h>
#include <time.h>
int main (void) {
    printf ("%d\n",time(0));
    return 0;
}

:-)

长梦不多时 2024-09-03 23:39:59

你可以尝试 nawk,(但尝试使用 perl 命令进行双重确认,看看它们是否给出相同的结果)

nawk "BEGIN{print srand}"

you can try nawk,(but try to double confirm with the perl commands and see if they give the same results)

nawk "BEGIN{print srand}"
风铃鹿 2024-09-03 23:39:59

试试这个

/usr/bin/truss /usr/bin/date 2>&1 | grep ^时间 | awk '{print $3}'

Try this

/usr/bin/truss /usr/bin/date 2>&1 | grep ^time | awk '{print $3}'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文