find 多文件查找需要单引号
[root@db01 local]# find -name '*.com'|xargs egrep "qq"
./tt.com:qq
[root@db01 local]# find -name '*.com'
./tt1.com
./tt.com
[root@db01 local]# find -name '*.com'|xargs egrep qq
./tt.com:qq
[root@db01 local]# cat tt.com
qq
[root@db01 local]# egrep "qq" `find ./ -name '*.com'`
./tt.com:qq
时来天地皆同力,运去英雄不自由