Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 163 Bytes

File metadata and controls

12 lines (6 loc) · 163 Bytes

查找文件

通过名字查找文件

find -name "nameFile"

但是分大小写.

如果不区分大小写用下面的命令:

find -iname "nameFile"