首页 > 代码库 > linux下查找过滤文件内容

linux下查找过滤文件内容

find /data/weblogic/oracle/middleware -type f -name "*.xml" | xargs grep "context"

 

find /u02/weblogic/ -type f -name "*.xml" | xargs grep "context-root"

 

参考文章

linux下查找过滤文件内容