在Linux中,使用grep命令時,可以通過添加-i
選項來實現忽略大小寫的搜索
grep -i "search_pattern" file_name
這里的search_pattern
是你要搜索的文本,file_name
是你要在其中進行搜索的文件名。例如,如果你想在名為example.txt
的文件中搜索hello
,不區分大小寫,你可以使用以下命令:
grep -i "hello" example.txt
這將返回包含hello
、Hello
、HELLO
等所有大小寫組合的行。