[bingo] Linux grep 使用
grep egrep fgrep
1. -c 显示匹配的行数
2. -n 显示行号
3. -v 显示非匹配行
4. -i 大小写不敏感
5. -s 屏蔽出错信息
6. grep和正则表达式联合使用的时候,用单引号
grep '48[34]' tmpfile 匹配483或484
没有正则表达式时候,使用双引号
grep "aaa" tmpfile 匹配字符串aaa
grep '[0-9]\\.[0-9]\\.' ipfile 查询IP地址xxx.xxx.