博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
grep小练习
阅读量:5939 次
发布时间:2019-06-19

本文共 3651 字,大约阅读时间需要 12 分钟。

1、显示/proc/meminfo文件中以大写s开头的行,要求使用两种方式

2、显示/etc/passwd文件中不以/bin/bash结尾的行

3、显示/etc/passwd文件中ID号最大的用户的用户名

4、如果root用户存在,显示其默认的shell程序

5、显示/etc/passwd文件中两位或三位数

6、显示/etc/rc.d/rc.sysinit文件中,至少以一个空白字符开头的且后面存在非空白字符的行

7、找出'netstat -tab'命令的结果中以'LISTEN'后跟0、1或多个空白字符结尾的行

8、添加用户bash,testbash,basher以及nologin,要求nologin的shell为/sbin/nologin,而后找出/etc/passwd文件中用户名同shell名的行

1、显示/proc/meminfo文件中以大写s开头的行,要求使用两种方式

1
2
# grep -i '^s' /proc/meminfo
# grep '^[sS]' /proc/meminfo

结果

1
2
3
4
5
6
7
SwapCached:          172 kB
SwapTotal:       1049596 kB
SwapFree:        1048880 kB
Shmem:               676 kB
Slab:              30440 kB
SReclaimable:      17672 kB
SUnreclaim:        12768 kB

2、显示/etc/passwd文件中不以/bin/bash结尾的行

1
2
3
4
# grep -v '/bin/bash$' /etc/passwd
bin:x:1:1:bin:
/bin
:
/sbin/nologin
daemon:x:2:2:daemon:
/sbin
:
/sbin/nologin
.....

3、显示/etc/passwd文件中ID号最大的用户的用户名

1
2
3
4
5
6
7
8
# sort -n -r -t':' -k3 /etc/passwd | head -n 1
nfsnobody:x:65534:65534:Anonymous NFS User:
/var/lib/nfs
:
/sbin/nologin
 
# awk -v FS=':' 'BEGIN{print "----------------------------------"}{if(NR==1){MIN=$3;MAX=MIN;USER=$1;MINUSER=$1}};{if(NR!=1){if($3>MAX){MAX=$3;USER=$1};if($3<MIN){MIN=$3;MINUSER=$1}}}END {printf "MAX_UID: %-10i USER: %s\nMIN_UID: %-10d MIN_USER: %s\n-----------------------------------\n",MAX,USER,MIN,MINUSER}' /etc/passwd
----------------------------------
MAX_UID: 65534      USER: nfsnobody
MIN_UID: 0          MIN_USER: root
-----------------------------------

4、如果root用户存在,显示其默认的shell程序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# grep -q '^root\b' /etc/passwd && printf "root exist and default shell is " && grep '^root\>' /etc/passwd | cut -d':' -f7
root exist and default shell is 
/bin/bash
 
# sed -n '/^root\>/p' /etc/passwd > /dev/null 2>&1 && echo -ne 'root exist and default shell is\t' && sed -n '/^root\>/p' /etc/passwd | awk -v FS=':' '{print $NF}'
root exist and default shell is    
/bin/bash
 
# awk -F':' '$1 ~ /\<root\>/{print $NF}' /etc/passwd
/bin/bash
 
# awk -F':' '$1 == "root"{print $NF}' /etc/passwd
/bin/bash
 
# sed -n "`awk -F':' '$1 == "root" {print NR}' /etc/passwd`p" /etc/passwd 
root:x:0:0:root:
/root
:
/bin/bash

5、显示/etc/passwd文件中两位或三位数

1
2
3
4
5
方法一:
# grep -o '\<[0-9]\{2,3\}\b' /etc/passwd
# grep -o '\<[[:digit:]]\{2,3\}\b' /etc/passwd
方法二:
# egrep -o '\<[[:digit:]]{2,3}\b' /etc/passwd

6、显示/etc/rc.d/rc.sysinit文件中,至少以一个空白字符开头的且后面存在非空白字符的行

1
2
3
# grep '^[[:space:]]\+[^[:space:]]' rc.sysinit 
# sed -n '/^[[:space:]]\+[^[:space:]]/p' rc.sysinit
# awk '/^[[:space:]]+[^[:space:]]/ {print }' rc.sysinit

7、找出'netstat -tab'命令的结果中以'LISTEN'后跟0、1或多个空白字符结尾的行

1
# netstat -tan | grep 'LISTEN[[:space:]]*'

8、添加用户bash,testbash,basher以及nologin,要求nologin的shell为/sbin/nologin,而后找出/etc/passwd文件中用户名同shell名的行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[root@izpo45bh60h6bsz ~]
# useradd bash
[root@izpo45bh60h6bsz ~]
# useradd testbash
[root@izpo45bh60h6bsz ~]
# useradd basher
[root@izpo45bh60h6bsz ~]
# useradd -s /sbin/nologin nologin
 
# grep '\(^[[:alnum:]]\+\>\).*\1$' /etc/passwd
sync
:x:5:0:
sync
:
/sbin
:
/bin/sync
shutdown
:x:6:0:
shutdown
:
/sbin
:
/sbin/shutdown
halt:x:7:0:halt:
/sbin
:
/sbin/halt
nologin:x:2018:2018::
/home/nologin
:
/sbin/nologin
 
# sed -n '/\(^[[:alnum:]]\+\>\).*\1$/p' /etc/passwd
sync
:x:5:0:
sync
:
/sbin
:
/bin/sync
shutdown
:x:6:0:
shutdown
:
/sbin
:
/sbin/shutdown
halt:x:7:0:halt:
/sbin
:
/sbin/halt
nologin:x:2018:2018::
/home/nologin
:
/sbin/nologin
 
# awk -F':' '{split($NF,A,"/")}{if (A[3] == $1){print}}' /etc/passwd
sync
:x:5:0:
sync
:
/sbin
:
/bin/sync
shutdown
:x:6:0:
shutdown
:
/sbin
:
/sbin/shutdown
halt:x:7:0:halt:
/sbin
:
/sbin/halt
nologin:x:2018:2018::
/home/nologin
:
/sbin/nologin
本文转自 lccnx 51CTO博客,原文链接:http://blog.51cto.com/sonlich/1952534,如需转载请自行联系原作者
你可能感兴趣的文章
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
基于事件驱动的DDD领域驱动设计框架分享(附源代码)
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
apache prefork模式优化错误
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
cmd.exe启动参数说明
查看>>
《随笔记录》20170310
查看>>
网站分析系统
查看>>
从零开始来看一下Java泛型的设计
查看>>