#!/bin/sh

if [ "x$1" -eq "x" ]; then
	echo "usage: $0 <servername>"
else
	dig txt chaos version.bind. @$1
fi

