如何在目录中查找图像?

如何在目录中查找图像?

How can I find 5 JPEG files whose names contain the "intro" word in some form, in a directory? Also there is a hidden one file among these 5.

答案1

according to your description I would try:

find . -type f -iname "*intro*"

这也会吐出当前目录中的隐藏文件。

如果有帮助的话请告诉我。

相关内容