练习:
- 显示/etc/passwd文件中以bash结尾的行;
正则表达式: #grep ‘\(bash\)\>’/etc/passwd
扩展正则表达式 #egrep ‘(bash)\>’/etc/passwd
- 显示/etc/passwd文件中的两位数或三位数;
正则表达式:#grep -o ‘[0-9]\{2,3\}‘ /etc/passwd
扩展正则表达式:# egrep -o ‘[0-9]{2,3}‘ /etc/passwd
- 显示‘netstat–tan ’命令结果中以‘LISTEN’后跟0个、1个或多个空白字符结尾的行;
正则表达式:# netstat -tan|grep ‘\(LISTEN\)[[:space:]]\?\+‘
扩展正则表达式:# netstat -tan|egrep ‘(LISTEN)[[:space:]]?+‘
- 添加用户bash,testbash,basher以及nologin用户(nologin用户的shell为/sbin/nologin);而后找出/etc/passwd文件中用户名同shell名的行;
正则表达式:# grep ‘^\(.*\):.*\1$‘ /etc/passwd
扩展正则表达式:# egrep ‘^(.*):.*\1$‘ /etc/passwd
扩展正则表达式练习题:
- 显示当前系统上root、centos或user1用户的默认shell和UID;
# egrep ‘^(root):|(centos):|(user1):‘ /etc/passwd |cut -d:-f3,7
- 找出/etc/rc.d/init.d/functions文件中某单词(单词中间可以存在下划线)后面跟着一组小括号的行;
正则表达式:# grep ‘\([[:alpha:]]\{1,\}_\{0,\}[[:alpha:]]\{1,\}\)()‘/etc/rc.d/init.d/functions
扩展正则表达式:#egrep ‘([[:alpha:]]{1,}_{0,}[[:alpha:]]{1,})\(\)‘ /etc/rc.d/init.d/functions
- 使用echo输出一个路径,而后egrep找出其路径基名;
进一步地:使用egrep取出其目录名
取基名:
#echo /etc/sysconfig/network-scripts/ifcfg-eth0|egrep -o ‘[[:alnum:]]+$‘
# echo/etc/sysconfig/network-scripts/ifcfg-eth0/ |egrep -o ‘[[:alnum:]]+/?$‘
取路径名
# echo/etc/sysconfig/network-scripts/ifcfg-eth0 |egrep -o ‘^.*+/‘
- 找出ifconfig命令执行结果中1-255之间的数字
#ifconfig|egrep -o ‘[1-9]|[1-9][0-9]|[1-2][0-5][0-5]‘