grep 忽略大小写

示例

给定一个文件sample:

hello
Hello
HELLO_there

grep“ hello”的法线返回:

$ grep "hello" sample 
hello

使用-i允许忽略大小写并匹配任何“ hello”:

$ grep -i "hello" sample
hello
Hello
HELLO_there