现在的位置: 首页 > 综合 > 正文

How to find the file which contain a specified string

2018年04月17日 ⁄ 综合 ⁄ 共 172字 ⁄ 字号 评论关闭

grep -i "wfi_paypal_pkg.get_pp_response" `find ./ -type f -name "*.pm"`

 

grep -iR wfi_paypal_pkg.get_pp_response ./

 

find ./ -type f -name "*.pm" | xargs grep -i 'wfi_paypal_pkg.get_pp_response'

【上篇】
【下篇】

抱歉!评论已关闭.