#!/bin/sh
# $Id: find-and-cat-openbsd,v 1.1 2004/08/10 19:53:18 tol Exp $
if test "X$FAST" != "X" ; then echo "Not running $0" >&4;  exit 0 ; fi
openbsd_ftp_mirror=${1-$AFSROOT/stacken.kth.se/ftp/pub/OpenBSD/3.5/}
find ${openbsd_ftp_mirror} -type f -exec cat '{}' \; > /dev/null
