1)linux下查找指定文件名: find PATH -type f -name "aaa.txt" [root@iZ25z0ugwgtZ /]# find / -type f -name "mysql" /usr/bin/mysql 2)find+grep配合查找包含某字符串的文件并显示行号: #> find . -type f -exec grep 'mingtian' -l {} \; grep -l :是显示匹配的内容的文件名字! 或者:...