# Searches through my user's "home" directory recursively for the file "hashClass.java", throwing out error output along the way. # Passes the output to grep for case insensitive search. find ~/ 2>/dev/null | grep -i "hashclass.java"
# Searches through my user's "home" directory recursively for the file "hashClass.java", throwing out error output along the way. # Passes the output to grep for case insensitive search. find ~/ 2>/dev/null | grep -i "hashclass.java"