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.
| ||||
|
feedback
|
|
Some servers provide the Try:
on your favorite Example transcript:
| ||||
|
feedback
|
|
Or if you own the server and can set up ssh access (or, worst case, rsh access), you can run the
You can give the The remoteHost can be an IP address or a servername that you have a network path to. I hope this helps. | |||
|
feedback
|