StackOverflow 文档 grep 教程 grep 入门 忽略大小写 忽略大小写 Created: November-22, 2018 给出一个文件 sample: hello Hello HELLO_there hello 的正常 grep 返回: $ grep "hello" sample hello 使用 -i 允许忽略大小写并匹配任何 hello: $ grep -i "hello" sample hello Hello HELLO_there 匹配整个单词基本用法