#!/bin/sh
usage () {
  echo "searchtree path regexp 
	finds REGEXP recursively in PATH"
  exit
}

if [ "x$2" = "x" ]; then usage; fi

path=$1
regexp=$2

find $path -type f -exec grep "$regexp" {} /dev/null \;
