#!/bin/sh
URL=www.fam-tille.de
cd /tmp

LCHECKER=linklint
if ! which ${LCHECKER} > /dev/null ; then
    echo "${LCHECKER} not found."
    exit -1
fi
${LCHECKER} -error -warn -limit 100000 -http -host $URL /@ 2>&1 | tee > /tmp/$URL-check
