% lookfor /work -7 tamale enchilada
would search through the entire /work filesystem
and print the names of all files modified within the past week that
contain the words "tamale" or
"enchilada." (For example, if this
article is stored in /work,
lookfor should find it.)
The arguments to the script are the pathname of a directory hierarchy
to search in ($1), a time ($2),
and one or more text patterns (the other arguments). This simple but
slow version will search for an (almost) unlimited number of words:
#!/bin/sh
temp=/tmp/lookfor$$
trap 'rm -f $temp; exit' 0 1 2 15
find $1 -mtime $2 -print > $temp
shift; shift
for word
do grep -i "$word" `cat $temp` /dev/null
done