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

8-28 正则表达式练习题

时间:2015-08-30 17:52:22      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:正则表达式练习题

练习:

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

正则表达式:  #grep ‘\(bash\)\>’/etc/passwd

 技术分享

扩展正则表达式  #egrep ‘(bash)\>’/etc/passwd

技术分享

  1. 显示/etc/passwd文件中的两位数或三位数;

正则表达式:#grep -o ‘[0-9]\{2,3\}‘ /etc/passwd

技术分享

扩展正则表达式:# egrep -o ‘[0-9]{2,3}‘ /etc/passwd

 

  1. 显示‘netstat–tan ’命令结果中以‘LISTEN’后跟0个、1个或多个空白字符结尾的行;

正则表达式:# netstat -tan|grep ‘\(LISTEN\)[[:space:]]\?\+‘

技术分享

扩展正则表达式:# netstat -tan|egrep ‘(LISTEN)[[:space:]]?+‘

 

  1. 添加用户bashtestbashbasher以及nologin用户(nologin用户的shell/sbin/nologin;而后找出/etc/passwd文件中用户名同shell名的行;

正则表达式:# grep ‘^\(.*\):.*\1$‘ /etc/passwd

技术分享

扩展正则表达式:# egrep ‘^(.*):.*\1$‘ /etc/passwd

技术分享

 

 

 

 

扩展正则表达式练习题:

  1. 显示当前系统上rootcentosuser1用户的默认shellUID

    # egrep ‘^(root):|(centos):|(user1):‘ /etc/passwd |cut -d:-f3,7

    技术分享

  2. 找出/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

    技术分享

  3. 使用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])\>‘


8-28 正则表达式练习题

标签:正则表达式练习题

原文地址:http://liulongthe.blog.51cto.com/5161098/1689714

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