这个问题说明了一切,我都看到了
find -name
和
find -iname
在没有明显图案的情况下到处使用。
有人能解释一下这些差异吗?也许可以举个例子来说明一下。
发布于 2015-09-21 01:07:49
来自GNU find
手册页面:
-iname pattern
Like -name, but the match is case insensitive. For example, the
patterns `fo*' and `F??' match the file names `Foo', `FOO',
`foo', `fOo', etc.
https://unix.stackexchange.com/questions/230952
复制相似问题