# Find the word "schizoid" in /lymon/homes/cs494 find /lymon/homes/cs494 -type f -exec grep schizoid {} \; # Find out which file that came from: find /lymon/homes/cs494 -type f -exec grep schizoid {} /dev/null \; # Remove all your core files: find $HOME -name core -exec rm -i {} \;