LINUX grep练习题

1、显示/proc/meminfo文件中以大小s开头的行(要求:使用两 种方法)
代码:
cat /proc/meminfo|grep -i ^s
执行结果

LINUX grep练习题_第1张图片

2、显示/etc/passwd文件中不以/bin/bash结尾的行
代码:
cat /etc/passwd |grep -v /bin/bash$

3、显示用户rpc默认的shell程序
代码:
cat /etc/passwd |grep ^”\brpc\b”|cut -d/ -f5,6

4、找出/etc/passwd中的两位或三位数
代码:
cat /etc/passwd|grep “\<[0-9]{2,3}>”

5、显示CentOS7的/etc/grub2.cfg文件中,至少以一个空白 字符开头的且后面存非空白字符的行
代码:
cat /etc/grub2.cfg |grep “^[[:space:]] [^[:space:]]”
LINUX grep练习题_第2张图片

6、找出“netstat -tan”命令的结果中以‘LISTEN’后跟任意多 个空白字符结尾的行
代码:
netstat -tan |grep “LISTEN”$’ ‘*

LINUX grep练习题_第3张图片

7、显示CentOS7上所有系统用户的用户名和UID
cat /etc/passwd|cut -d: -f1,3|grep “\b[0-9]{0,3}$”

LINUX grep练习题_第4张图片
8、添加用户bash、testbash、basher、sh、nologin(其shell 为/sbin/nologin),找出/etc/passwd用户名同shell名的行
代码:cat /etc/passwd | grep “(^.)>./\1$”
这里写图片描述
9、利用df和grep,取出磁盘各分区利用率,并从大到小排序
代码
df|grep dev |grep -o “[0-9]{1,3}%”|sort -rn
这里写图片描述

1、显示三个用户root、mage、wang的UID和默认shell

grep -E “^(root|mage|wang)>” /etc/passwd | cut -d: -f1,3,7

2、找出/etc/rc.d/init.d/functions文件中行首为某单词(包 括下划线)后面跟一个小括号的行

[root@centos7 app]# grep -E “^[[:alpha:]_]+()” /etc/rc.d/init.d/functions

3、使用egrep取出/etc/rc.d/init.d/functions中其基名
echo /etc/rc.d/init.d/functions | grep -E -o “[^/]+/?$”

4、使用egrep取出上面路径的目录名
echo /etc/rc.d/init.d/functions |grep -E -o “/.*/”

这里写图片描述

“`

你可能感兴趣的:(linux)