grep -i ^ code example
Example 1: grep -r
grep -r 'text goes here' path_goes_here
Example 2: grep i
With -i flag you can grep a substring with insensitive-case:
grep -i "substring_with_lower_or_upper_case"
grep -r 'text goes here' path_goes_here
With -i flag you can grep a substring with insensitive-case:
grep -i "substring_with_lower_or_upper_case"