#!/usr/bin/ksh
if [ "$1" = "" ];then
echo Recursive grep
echo usage: rgrep [string]
exit
fi
echo Searching recursively through all subdirectories
echo This may take some time...
find . -name "*" -exec grep -sil $1 {} \;
