#!/bin/csh

if ($#argv != 2) then
	echo 'usage: jfindfiles <path> <fileregex>'
else
	set spath = `pwd`/$1/
	find $spath | egrep $2
endif
