在 bash 中从外部服务器打印时间

发布于 2024-12-11 19:47:32 字数 260 浏览 0 评论 0原文

我想知道是否可以简单地从外部服务器检索 Unix 时间戳(我想使用 NTP)。我知道有 ntpd,它会将当前系统时间更新为 NTP 服务器给出的时间,但我只想读取 <代码>时间戳。是否可以在 Linux 中使用 Bash 命令?如果没有,我想我只需要编写一个 Python(或其他)应用程序来获取它并将其打印在 shell 上。

I'd like to know if it's possible to simply retrieve a Unix timestamp from an external server (using NTP, I suppose). I know there's ntpd, which will update the current system time to the time given by an NTP server, but I only want to read the timestamp. Is it possible using a Bash command in Linux? If not, I guess I'll just have to write a Python (or something) app to get it and print it on the shell.

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

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

发布评论

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

评论(2

英雄似剑 2024-12-18 19:47:32

有些服务器提供daytime守护进程,它可以以文本形式为您提供您想要的内容。

尝试:

telnet SERVER daytime

在您最喜欢的SERVER上。

成绩单示例:

pax$ telnet time.nist.gov daytime
Trying 192.43.244.18...
Connected to time.nist.gov.
Escape character is '^]'.

55860 11-10-26 06:33:38 12 0 0 438.2 UTC(NIST) *
Connection closed by foreign host.

Some servers provide the daytime daemon which can give you what you want, in textual form anyway.

Try:

telnet SERVER daytime

on your favorite SERVER.

Example transcript:

pax$ telnet time.nist.gov daytime
Trying 192.43.244.18...
Connected to time.nist.gov.
Escape character is '^]'.

55860 11-10-26 06:33:38 12 0 0 438.2 UTC(NIST) *
Connection closed by foreign host.
桃酥萝莉 2024-12-18 19:47:32

或者,如果您拥有服务器并且可以设置 ssh 访问(或者,最坏的情况下,rsh 访问),您可以在远程计算机上运行 date 命令,即

ssh user@remoteHost "date +%Y%m%d.%H%M%S"
20111026.090705

您可以为 date cmd 提供许多选项来格式化输出,就像您想要的那样,使用 man date 并查看文档末尾的示例。请注意,在我的示例中,%Y 是 4 位数的年份,%m 是两位数的月份,%d 是两位数的日期,%H %M %S 是两位数的小时、分钟和秒。

RemoteHost 可以是您拥有网络路径的 IP 地址或服务器名称。

我希望这有帮助。

Or if you own the server and can set up ssh access (or, worst case, rsh access), you can run the date command on the remote machine, i.e.

ssh user@remoteHost "date +%Y%m%d.%H%M%S"
20111026.090705

You can give the date cmd lots of options to format the output just like you would like it, use man date and look at the end of the document for examples. Note in my example that %Y is the 4 digit year, %m is two digit month, %d is two digit day, %H %M %S are two digit hr, minute and seconds.

The remoteHost can be an IP address or a servername that you have a network path to.

I hope this helps.

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