Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

use find command to search file contents

# Issue: using find command in unix to search for file contents recursively
find . -type f -name "*.csv" | xargs grep 'unexpected text stuff'
 
PREVIOUS NEXT
Tagged: #find #command #search #file #contents
ADD COMMENT
Topic
Name
9+4 =