02Jun 2014 find files containing a word in linux by Jeff Levensailor ⋅ Leave a Comment This command will search the working directory recursively for any files with the word “sample” and output to the screen. find . -type f -exec grep -l “sample” {} + Posted in: linux