Answers for "what command to search file/content in linux"

1

linux search inside files

grep -Rl "search-term"
Posted by: Guest on October-07-2021
0

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'
Posted by: Guest on February-18-2021

Code answers related to "what command to search file/content in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language