#!/bin/sh
[ -n "$1" ] || . usage url
if q HEAD -t 5 "$1"; then
	echo >&2 webping "$1" okay
else
	echo >&2 webping "$1" FAILED
	exit 1
fi
