# SKIP test if hardlinks doesn't work (bird)
rm -f hardlink.check.org hardlink.check.link
>hardlink.check.org
if ln hardlink.check.org hardlink.check.link; then
else
    rm -f hardlink.check.org hardlink.check.link
    echo "ln doesn't do hardlinks."
    (exit 77); exit 77;
fi
rm -f hardlink.check.org hardlink.check.link

