您的位置:首页 > 大数据 > 人工智能

How to find the file which contain a specified string

2009-09-08 16:54 429 查看
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'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: