xref: /freebsd/usr.sbin/ntp/scripts/ntpver (revision a3c858005cae175e277f6f6735ca9eaea7eaf3c3)
1#!/bin/sh
2# print version string of NTP daemon
3# Copyright (c) 1997 by Ulrich Windl
4# Modified 970318: Harlan Stenn: rewritten...
5# usage: ntpver hostname
6
7ntpq -c "rv 0 daemon_version" $* | awk '/daemon_version/ { print $2 }'
8