Answers for "grep insensitive"

4

grep insensitive

With -i flag you can grep a substring with insensitive-case:
grep -i "substring_with_lower_or_upper_case"
Posted by: Guest on October-19-2020
0

case insensitive grep windows

Find strings with case-insensitive search using -i flag with findstr as follows:
findstr -i "Case_insensitive_substring"
For example:
dir | findstr -i "Case_insensitive_file_name"
Posted by: Guest on October-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language