通过名字查找文件
复制代码find -name "nameFile"
find -name "nameFile"
但是分大小写.
如果不区分大小写用下面的命令:
复制代码find -iname "nameFile"
find -iname "nameFile"
本文使用 EduBoo.COM 构建