标签:正则表达式练习题
练习:
显示/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 ‘^.*+/‘
4、找出ifconfig命令执行结果中1-255之间的数字
#ifconfig | egrep ‘\<([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\>‘
标签:正则表达式练习题
原文地址:http://liulongthe.blog.51cto.com/5161098/1689714