# find . -type f -print | xargs grep "yourfined"
上面的命令就行了,yourfined就是你要查找文件中的内容,下面是显查找后显示的例子./httpd1.conf为查到的文件,#后面是内容。
./httpd1.conf:# different IP addresses or yourfined and have them handled by the
./httpd1.conf:# VirtualHost: If you want to maintain multiple domains/yourfined
on your
比方你要在 /path 下搜索名为 test.txt 的文件,并显示其内容
find /path -name "test.txt" -exec cat {} \;
我只知道查找文件路径的命令,不知道你能不能将就用:find -name 文件名
之后直接vi 进去不就可以了么,直接cat出来,还是没找到!