I've been using this command:
find /path~ -type f | xargs grep -iR STRING1
to find strings in multiple files, but i was wondering me how can i find a string in multiple files, Case Sensitive, and even if the string is in other string.
For example:
I'm searching for: Encoder
- if a file contains:
abcdEncoder
— should appear - if a file contains:
abcdencoder
— shouldn't appear - if a file contains:
encoderEncoder
— should appear
Maybe the question is a duplicate, but i haven't find it!