grep 忽略大小写
示例
给定一个文件sample:
helloHello
HELLO_there
grep“ hello”的法线返回:
$ grep "hello" samplehello
使用-i允许忽略大小写并匹配任何“ hello”:
$ grep -i "hello" samplehello
Hello
HELLO_there
以上是 grep 忽略大小写 的全部内容, 来源链接: utcz.com/z/321292.html
给定一个文件sample:
helloHello
HELLO_there
grep“ hello”的法线返回:
$ grep "hello" samplehello
使用-i允许忽略大小写并匹配任何“ hello”:
$ grep -i "hello" samplehello
Hello
HELLO_there
以上是 grep 忽略大小写 的全部内容, 来源链接: utcz.com/z/321292.html