grep的基本用法
grep -rn "text"
: 在当前目录递归查找"text",匹配的结果显示所在的行数
grep -rn "text" . --include *.{c,cpp}
: 基本功能同上,但是只在.c和.cpp文件中查找(--include 选项必须有)
grep -e "hapy" -e "enjoy" -rn
: 通过-e
选项可以实现多个字符串匹配的功能
grep -e "main" -e "include" -rc --include *.cpp
:-c
选项统计文本中包含文本的次数
grep -rni "MAIN" --include *.cpp
:-i
选项可以忽略大小写