正则表达式练习

1、显示/etc/passwd文件中不以/bin/bash结尾的行;

~]# grep -v "/bin/bash$" /etc/passwd


2、找出/etc/passwd文件中的两位数或三位数;

~]# grep "\<[0-9]\{2,3\}\>" /etc/passwd


3、找出/etc/rc.d/rc.sysinit或/etc/grub2.cfg文件中,以至少一个空白字符开头,且后面非空白字

符的行;

~]# grep "^[[:space:]]\+[^[:space:]]" /etc/grub2.cfg


4、找出"netstat -tan"命令的结果中以'LISTEN'后跟0、1或多个空白字符结尾的行;

~]# netstat -tan | grep "LISTEN[[:space:]]*$"

 

你可能感兴趣的:(正则表达式练习)