码迷,mamicode.com
首页 > 其他好文 > 详细

grep 正则

时间:2017-11-08 17:42:42      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:host   gre   div   log   col   root   cal   bsp   nbsp   

 

-w 精准匹配 只有‘root‘ 这个关键字的行

[root@localhost sh]# cat root.sh 
#!/bin/bash

root

[root@localhost sh]# grep -w root root.sh  
root

 

-q  表示只过滤但不在终端显示出来

grep -q root  root.sh 

-v  过滤出 不带 ‘abc‘的行

[root@localhost sh]# cat root.sh 
#!/bin/bash

root

abc
[root@localhost sh]# 
[root@localhost sh]# grep -v abc root.sh 
#!/bin/bash

root

[root@localhost sh]# 

 

grep 正则

标签:host   gre   div   log   col   root   cal   bsp   nbsp   

原文地址:http://www.cnblogs.com/mingerlcm/p/7804586.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!