[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

相关文章:

  • 2021-08-09
  • 2021-08-01
  • 2021-11-27
  • 2021-12-09
  • 2021-12-19
  • 2021-11-28
  • 2021-05-04
  • 2021-10-30
猜你喜欢
  • 2021-11-28
  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-11-28
  • 2022-01-07
相关资源
相似解决方案