1 r-递归查找grep -r 'for' *
2 i-忽略大小写grep -i 'a' *
3 c-显示匹配到的次数grep -cr 'for' *
4 n-输出行号grep -rn "for" *
5 l-只显示匹配到的
2024-03-12