在 Linux 下,你可以使用 grep 命令的 -i 選項來忽略大小寫進行過濾
-i
grep -i "example" file.txt
這將在 file.txt 文件中搜索包含 “example”(不區分大小寫)的行。如果你想從標準輸入中搜索,可以使用管道:
file.txt
echo "This is an Example." | grep -i "example"
這將輸出 “This is an Example.”,因為它包含了 “example”(不區分大小寫)。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529