练习:

1、cat /etc/passwd |egrep --color=auto 'bash$'

3、netstat  -tan |grep  --color=auto "LISTEN\?[[:space:]]"

4、useradd nologin 

usermod -s /sbin/nologin

cat /etc/passwd | grep --color=auto 'nologin$'

为啥那么多以nologin结尾的?

作业:

第一题

cat /etc/passwd |grep  --color=auto -E '(root)|(centos)|(user1)'| cut -d :  -f 1,3,7

第二题

cat /etc/rc.d/init.d/functions  |egrep --color=auto '\<[a-z]*_'  |egrep --color=auto '\)$'


第三题

echo /etc/yum/vars/ | egrep  --color=auto '(vars)'|cut -d / -f 4


第四题

ifconfig | egrep  --color=auto  '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'

ifconfig | egrep --color=auto '[0-5]{3}'搜索出连续3位数