#!/bin/rc 

switch($#*){
case 2
	/bin/du -a $1 | /bin/awk '{print $2}' | /bin/grep $2
case *
	/bin/echo 'usage: sfind dir pattern' >[1=2]
}

