首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
系统相关
> 详细
Linux中正则表达式的练习集合
时间:
2018-05-27 18:34:03
阅读:
312
评论:
0
收藏:
0
[点我收藏+]
标签:
LINUX
正则表达式
grep
1、找出ifconfig “网卡名” 命令结果中本机的IPv4地址
ifconfig | head -n 2 |tail -1 |tr -s " " |cut -d" " -f3
2、查出分区空间使用率的最大百分比值
df |tr -s " " |cut -d" " -f5
3、查出用户UID最大值的用户名、UID及shell类型
cat /etc/passwd | cut -d: -f1,3,7| sort -nt: -k2 |tail -n 1
4、查出/tmp的权限,以数字方式显示
stat /tmp | head -n 4 |tail -n 1|cut -c10-13
5、统计当前连接本机的每个远程主机IP的连接数,并按从大到小排序(无图)
cat /var/log/httpd/access_log |cut -d" " -f1 |sort |uniq -c |sort -n -r |head
6、显示CentOS7的/etc/grub2.cfg文件中,至少以一个空白字符开头的且后面存非空白字符的行
grep "^[[:blank:]]+" /etc/grub2.cfg |grep -v "^[[:space:]]
$"
7、找出“netstat -tan”命令的结果中以‘LISTEN’后跟任意多个空白字符结尾的行
netstat -tan |grep "LISTEN[[:blank:]]
$"
8、显示CentOS7上所有系统用户的用户名和UID
cat /etc/passwd |cut -d: -f1,3 | egrep -v "[0-9]{4,}"
9、添加用户bash、testbash、basher、sh、nologin(其shell为/sbin/nologin),找出/etc/passwd用户名同shell名的行
grep "(^.
)\>.
\<\1$" /etc/passwd
10、利用df和grep,取出磁盘各分区利用率,并从大到小排序
df |egrep "\<[0-9]
%.
" -o|sort -nr
11、显示三个用户root、mage、wang的UID和默认shell(C7代替)
cat /etc/passwd |egrep "^(root|C7)" |cut -d: -f1,3
12、找出/etc/rc.d/init.d/functions文件中行首为某单词(包括下划线)后面跟一个小括号的行
egrep ".
()" /etc/rc.d/init.d/functions
13、使用egrep取出/etc/rc.d/init.d/functions中其基名(弄得有点投机嫌疑)
echo /etc/rc.d/init.d/functions | egrep "[a-z]
$"
14、使用egrep取出上面路径的目录名
echo /etc/rc.d/init.d/functions | egrep "/.*/"
15、统计last命令中以root登录的每个主机IP地址登录次数
last|cut -c23-38 |sort|uniq -c|sort -rn|head -n 1
16、利用扩展正则表达式分别表示0-9、10-99、100-199、200-249、250-255
echo {1..255} |
egrep "\<[0-9]\>"
egrep "\<1[0-9]\>"
egrep "\<1[0-9][0-9]\>"
egrep "\<2[0-4][0-9]\>"
egrep "\<25[0-5]\>"
17、显示ifconfig命令结果中所有IPv4地址(瞎写)
ifconfig |egrep "[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}"
18、将此字符串:welcome to tiantianpaokuzhentmdehaowan linux 中的每个字符去重并排序,重复次数多的排到前面
echo wecomele to tiantianpaokuzhentmdehaowan linux |grep -o . |sort |uniq -c |sort -nr
如有错误之处还请批评指正。
Linux中正则表达式的练习集合
标签:
LINUX
正则表达式
grep
原文地址:http://blog.51cto.com/13116366/2120839
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
gitlab 在linux安装环境下存储地址
2021-07-29
当 Mac 未检测到外部显示器时如何修复它
2021-07-29
Ubuntu18.04安装qemu遇到问题-qemu : Depends: qemu-system (>= 1:2.11+dfsg-1ubuntu7)
2021-07-28
[Linux]Shell编程【待续】
2021-07-28
Linux系统资源查看
2021-07-27
Archlinux爬坑指南
2021-07-27
[Linux]Linux发展历程
2021-07-27
非桌面系统 (ubuntu)安装google-chrome
2021-07-27
在Ubuntu18.04系统中源码安装 gcc7.3.0
2021-07-23
Linux快捷键杂记
2021-07-22
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!