day12

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day12相关的知识,希望对你有一定的参考价值。

一、awk文本处理。

1、打印uid在30-40范围内的用的用户名

答:

[[email protected] ~]# awk -F: ‘41>$3 && $3>29{print $1}‘ /etc/passwd

技术分享

2、打印第5-10行的行号和用户名。

答:

[[email protected] ~]# awk -F: ‘11>NR && NR<4{print $1,NR}‘  /etc/passwd

 技术分享

3、打印奇数行。

答:

[[email protected] ~]# awk -F: ‘NR%2!=0 {print $0,NR}‘ /etc/passwd

技术分享

4、打印偶数行。

答:

[[email protected] ~]# awk -F: ‘NR%2==0 {print $0,NR}‘ /etc/passwd

技术分享

5、打印字数段大于5的行。

答:

[[email protected] ~]# awk -F: ‘$5!=null{print}‘   /etc/passwd

技术分享

6、打印UID不等于GID的用户

答:

[[email protected] ~]# awk -F: ‘$3!=$4{print $1}‘  /etc/passwd

 技术分享

7、打印没有指定shell登陆的用户

答:

 [[email protected] ~]# awk -F: ‘/bash$/{print $1}‘ /etc/passwd

 技术分享

 

二、shell脚本编写

监控脚本:监控机器内存使用率>70%,则输出报警信息。提示思路:

 [[email protected] ~]# ((80>70))

[[email protected] ~]# echo $?

0

答:

 

以上是关于day12的主要内容,如果未能解决你的问题,请参考以下文章

day12-day15集合

day12-事务

自学it18大数据笔记-第一阶段Java-day09-day10-day11-day12-day13-day14-day15

DAY12-Java中的类--接DAY10

day12

##DAY12 UITableViewCell自定义