码迷,mamicode.com
首页 > 其他好文 > 详细

Liunx常用操作(三)-如何忽略大小写查找

时间:2020-04-27 22:19:53      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:find命令   大写   常用   soft   文件内容   microsoft   查找   参数   liunx   

1.vim 中的查找

搜索文件内容时加上 /c 参数可以忽略搜索字符的大小写

正常搜索:/helloworld

忽略操作:/helloworld/c

 

2.find 查找

使用find命令搜索文件时如果不清楚文件的名称中是否包含的大写,你可以使用 -iname参数来忽略大小写

正常查找:[root@liunx]# find ./ -name helloworld

忽略操作:[root@liunx]# find ./ -iname helloworld

 

3.grep 查找

用管道grep 匹配关键词时如果需要忽略大小写,你可以使用 -i 参数.

正常查找:[root@liunx]#cat test001.txt | grep true 

忽略操作:[root@liunx]#cat test001.txt | grep true -i

Liunx常用操作(三)-如何忽略大小写查找

标签:find命令   大写   常用   soft   文件内容   microsoft   查找   参数   liunx   

原文地址:https://www.cnblogs.com/mrwhite2020/p/12790409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!