bash find text in all csv files

C++
find <your directory path> -name "*.csv" -type f | xargs grep "word"
Source

Also in C++: