Linux正则表达式及grep练习题
1、找出ifconfig命令结果中本机的所有IPv4地址
# ifconfig|grep -E -o "(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])"
2、查出分区空间使用率的最大百分比值
# df |grep "/dev/[sh]d"|tr -s ' ' '%'|cut -d"%" -f5|sort -nr|head -1
3、查出用户UID最大值的用户名、 UID及shell类型
# sort -t: -k3 -nr /etc/passwd|head -1|cut -d: -f1,3,7
4、查出/tmp的权限,以数字方式显示
# stat /tmp |grep '('|cut -d"(" -f2|cut -d"/" -f1
5、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序
# netstat -tn|grep "tcp"|tr -s ' '|cut -d" " -f5|cut -d: -f1|sort -t"." -k4|uniq -c|sort -nr
6、显示/proc/meminfo文件中以大小s开头的行; (要求:使用两种方式)
# grep -i "^s" /proc/meminfo
# grep "^[Ss]" /proc/meminfo
7、显示/etc/passwd文件中不以/bin/bash结尾的行
# grep -v "/bin/bash$" /etc/passwd
8、显示用户rpc默认的shell程序
# grep "^rpc:" /etc/passwd|cut -d: -f7
9、找出/etc/passwd中的两位或三位数
# grep -o "\<[1-9][0-9]\{1,2\}\>" /etc/passwd|sort -nr|uniq
10、显示/etc/grub2.cfg文件中,至少以一个空白字符开头的且后面存非空白字符的行
# grep "^[[:space:]]\+[^[:space:]]" /etc/grub2.cfg
11、 找出“netstat -tan”命令的结果中以‘LISTEN’后跟任意多个空白字符结尾的行
# netstat -tan|grep "LISTEN[[:space:]]*$"
12、添加用户bash、 testbash、 basher以及nologin(其shell为/sbin/nologin),而后找出/etc/passwd文件中用户名同shell名
的行
# grep "^\([[:alnum:]]\+\>\).*\1$" /etc/passwd
13、 显示三个用户root、 mage、 wang的UID和默认shell
# egrep "^((root)|(mage)|(wang)\>)" /etc/passwd
14、找出/etc/rc.d/init.d/functions文件中行首为某单词(包括下划线)后面跟一个小括号的行
# egrep "^[[:alpha:]_]+\(\)" /etc/rc.d/init.d/functions
15、使用egrep取出/etc/rc.d/init.d/functions中其基名
# echo "/etc/rc.d/init.d/functions" |grep -o "[^/]\+/\?$"
16、使用egrep取出上面路径的目录名
# echo "/etc/rc.d/init.d/functions" |egrep -o "^/.*/"
17、统计以root身份登录的每个远程主机IP地址的登录次数
# last|egrep "^root.*(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]).*"|tr -s " "|cut -d" " -f3|uniq -c
18、利用扩展正则表达式分别表示0-9、 10-99、 100-199、200-249、 250-255
0-9: [0-9]
10-99: [1-9][0-9]
100-199: 1[0-9]{2}
200-249: 2[0-4][0-9]
250-255: 25[0-5]
19、取本机IP地址
# ifconfig|grep "Bcast"|cut -d":" -f2|cut -d" " -f1
20、取各分区利用率的数值
# df |grep "/dev/[sh]d"|tr -s ' ' '%'|cut -d% -f5|sort -nr
21、统计/etc/init.d/functions 文件中每个单词出现的次数,并按频率从高到低显示
# cat /etc/init.d/functions |tr -c "[:alpha:] \n" " "|tr -s " " "\n"|sort|uniq -c|sort -nr
22、/etc/rc.d/init.d/functions或/etc/rc.d/init.d/functions/" 取目录名
# echo "/etc/rc.d/init.d/functions"|sed 's@[^/]\+/\?$@@'
23、正则表达式表示身份证号
1: [1-9]
2-6: [0-9]{5}
78: (19|20|21)
9-10 [0-9]{2}
11-12 ((0[1-9])|11|12)
13-14 ((0[1-9])|([12][0-9])|(3[0-1]))
15-17 [0-9]{3}
18 [0-9X]
# egrep "\<[1-9][0-9]{5}(19|20|21)[0-9]{2}((0[1-9])|(10|11|12))((0[1-9])|([12][0-9])|(3[0-1]))[0-9]{3}[0-9Xx]\>"
24、正则表达式表示手机号
分析:
第一位 1
第二位 3、4、5、7、8
egrep "\<1[34578][0-9]{9}\>"
25、正则表达式表示邮箱
egrep -o "\<[[:alnum:]_\-]+\.?[[:alnum:]]+@([[:alnum:]_\-]+\.)+(com|cn|edu|org|net|gov)\.?\>"
26、正则表达式表示QQ号
# egrep "\<[1-9][0-9]{4,11}\>"
原创文章,作者:M20-1倪文超,如若转载,请注明出处:http://www.178linux.com/29752