Linux find 命令如何忽略大小写?

按文件名查找:

find . -name "WSFY321.c"

要忽略大小写:

find . -iname "WSFY321.c"

类似的还有:

-lname -ilname

-path -ipath

-regx -iregx

发布了188 篇原创文章 · 获赞 88 · 访问量 58万+

猜你喜欢

转载自blog.csdn.net/henryhu712/article/details/102791980