Bash encontrar texto en todos los archivos CSV
find <your directory path> -name "*.csv" -type f | xargs grep "word"
Thoughtful Toad
find <your directory path> -name "*.csv" -type f | xargs grep "word"