bash find text in specific file 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"