Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何使用 Find 命令查找扩展名为 Zip、ZIP、zip 的文件。? 寻找 。-iname *.zip 在 AIX 中对我不起作用。
您需要在模式匹配部分周围使用引号。所以
find . -iname '*.zip'
会做得很好。
假设您的 shell 支持字符类作为其通配符处理的一部分,大多数人都这样做,请尝试
find . -name '*.[Zz][Ii][Pp]'
-iname? 我不知道那个。
-iname
是的,对不起,您需要一个起始目录,在这种情况下是“。” 您已标记为失踪。
我希望这有帮助。