find text in file shell script code example
Example: bash find text in specific file
find <your directory path> -name "*.file_type" -type f | xargs grep "word"
find <your directory path> -name "*.file_type" -type f | xargs grep "word"