001、 -iname选项 实现忽略大小写查找
[root@pc1 test1]# ls ## 测试文件 a.txt a.TXT c.csv c.tXt d.txt e.Txt f.csv k.map [root@pc1 test1]# find ./ -name "*.txt" ## 一般查找 ./a.txt ./d.txt [root@pc1 test1]# find ./ -iname "*.txt" ## -iname忽略大小写查找 ./a.txt ./a.TXT ./c.tXt ./d.txt ./e.Txt
。
标签:test1,iname,##,查找文件,大小写,linux,txt,find From: https://www.cnblogs.com/liujiaxin2018/p/17704674.html