#!/bin/sh for file in `find ./sunw -type f -print` do strings $file | grep "evaluation" > /dev/null if [ $? = 0 ] then echo $file fi done