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 匹配整個單詞基本用法