grep 忽略大小写

示例

给定一个文件sample:

hello

Hello

HELLO_there

grep“ hello”的法线返回:

$ grep "hello" sample 

hello

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

$ grep -i "hello" sample

hello

Hello

HELLO_there

           

以上是 grep 忽略大小写 的全部内容, 来源链接: utcz.com/z/321292.html

回到顶部