AmiTimeKeeper/arexx/getserver.rx

6 lines
171 B
Rexx

/* Show the NTP server address in use */
Options RESULTS
Address TIMEKEEPER.1 'GET SERVER';
IF TIMEKEEPER.ERRORCODE == 0 THEN SAY (RESULT)
ELSE SAY (TIMEKEEPER.ERRORTEXT)