grep常用的使用方法
grep –rns “match_content”filename 查看匹配内容的行
find /path –name “*.h” –o –name “*.cpp” | xargs grep –rn “match_content”在特定的文件类型中查找
grep –rns “match_content” –A10 –B10 filename > logfile 将匹配到的行的附近内容输入到其他文件
grep –w “match_content”filename 精确匹配
grep –I “match_content” filename 不区分大小写匹配
grep –v “match_content” filename 显示不包含匹配文本的其他行