grep E code example
Example 1: grep i
With -i flag you can grep a substring with insensitive-case:
grep -i "substring_with_lower_or_upper_case"
Example 2: grep excep
# grep anything inside any file
grep -R "yourWord" ./path
With -i flag you can grep a substring with insensitive-case:
grep -i "substring_with_lower_or_upper_case"
# grep anything inside any file
grep -R "yourWord" ./path