第六次作业

1 、取本机ip地址

Centos6.8

ifconfig | head -2|tail -1|cut -d: -f2|cut -d" " -f1
ifconfig | head -2|tail -1|cut -d: -f2|cut -dB -f1

Centos7.2

ifconfig|head -2|tail -1|cut  -dt -f2|cut -d" " -f2

2 、查出分区空间使用率的最大百分比值

df|tr -s " "|cut -d" " -f5|tr -d '%'|tail -n +2

3 、查出用户UID 最大值的用户名、UID 及shell 类型

getent passwd|sort -n -t: -k3|cut -d: -f1,3,7|tail -1

4 、查出/tmp 的权限,以数字方式显示

stat /tmp|head -n 4|tail -n +4|cut -d\( -f2|cut -d\/ -f1

5 、统计当前连接本机的每个远程主机IP 的连接数,并按从大到小排序

netstat -nt|tr -s " "|cut -d" " -f5|cut -d: -f1|tail -n +3|sort|uniq -c|sort -n -r

6 、显示/proc/meminfo 文件中以大小s 开头的行;( 要求:使用两种方式)

grep "^[Ss]" /proc/meminfo
egrep  "^(S|s)" /proc/meminfo
grep -i "^s" /proc/memsinfo

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

grep -v /bin/bash$ /etc/passwd

8、显示用户rpc 默认的shell 程序

grep "^rpc\>" /etc/passwd|cut -d: -f7

9 、找出/etc/passwd 中的两位或三位数

egrep -o "([[:digit:]]{2,3})" /etc/passwd

10、显示/etc/grub2.cfg 文件中,至少以一个空白字符开头的且后面存非空白字符的行

egrep "^[[:space:]]+[^[:space:]]" /etc/grub2.cfg

11、找出“netstat -tan” 命令 的结果 中以‘LISTEN’ 后跟任意多个空白字符结尾的行

netstat -tan|egrep "(LISTEN)[[:space:]]*$"

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

egrep "^([[:alnum:]]*):.*\1$" /etc/passwd

13、统计/etc/init.d/functions 文件中每个单词出现的次数,并按频率从高到低显示

cat /etc/init.d/functions |egrep -o "([[:alpha:]]*)" |sort|uniq -c|sort -n -r

14、/etc/rc.d/init.d/functions或/etc/rc.d/init.d/functions/"  取目录名或基名

echo "/testdir/dir/dir1/"  | egrep -o ".*/\<"           #目录名
echo "/testdir/dir/dir1/"  | egrep -o "([^/]+\/?)$"     #基名

15、正则表达式表示身份证号

egrep "\<((1[1-5])|(2[1-3])|(3[1-7])|(4[1-6])|(5[0-4])|(6[1-5])|(71|81|82))([0-9]){4}(19|20)([0-9]){2}((0[1-9])|(1[0-2]))(0[1-9]|(1[0-9])|(2[0-9])|(3[0-1]))([0-9]){3}([0-9]|X)\>" filename

16、正则表达式表示手机号

grep -E -o "(\+86)?1[38][0-9]{9}|14[57][0-9]{8}|15[0-35-9][0-9]{8}|17[0678][0-9]{8}" shoujihao

17、正则表达式表示邮箱

egrep "\<([[:alnum:]]+(-|_)*[[:alnum:]]*)\>@([[:alnum:]]+\.)+[[:alnum:]]+" mail 
grep -E -o '[a-zA-Z0-9]+[[:alnum:]\.\_-]*@[a-zA-Z0-9]+[[:alnum:]\.\_-]*' mail

18、正则表达式表示QQ号

grep -E -o '\b[1-9][0-9]{4,12}\b' QQ

原创文章,作者:NameLess,如若转载,请注明出处:http://www.178linux.com/32396

(0)
NameLessNameLess
上一篇 2016-08-10
下一篇 2016-08-10

相关推荐

  • -pxe

    一. BootStraping(OS install): 1. pxe:preboot excution environment , 即预启动执行环境,由intel开发,可实现无人值守自动安装操作系统 ( 依赖于dhcp (dhcpd )服务器与 ftp(lftp) 服务器) 2. pxe 自动化系统安装的流程: 1. client 从pxe网卡模式启动, …

    2016-11-18
  • 文本处理工具sed及文本编辑器vim课程作业

    文本处理工具sed课程作业     1、删除/etc/grub2.conf文件中所有以空白开头的行行首的空白字符         sed -n 's@^[[:space:]]\+@@p' /etc/grub2.cfg &…

    学员作品 2016-08-10
  • 正则表达式

    grep:Global search REgular expression and Print out the line         文本搜索工具,根据用户指定的”模式“对目标文本逐行进行匹配检查;打印匹配到的行        模式:由正则表达式字符及文本字符所编写的过滤条件…

    Linux干货 2016-08-08
  • 马哥教育网络班20期+第10周博客作业

    4、写一个脚本   (1) 能接受四个参数:start, stop, restart, status    start: 输出“starting 脚本名 finished.”    …   (2) 其它任意参数,均报错退出;     #!bin/b…

    学员作品 2016-12-05
  • 8月5日课堂及课后作业

    课堂作业 1.找出ifconfig命令结果中的IP地址 [root@localhost ~]# ifconfig |head -2|grep "inet" |tr " " ":"|cut -d:&nb…

    2016-08-08
  • linux中用ACL实现灵活的权限管理

    ACL是什么?? ACL英文原意是Access Control List(访问控制列表).它能够实现灵活的权限管理,除了文件的所有者,所属组和其他人,设置相应的权限外,ACL允许你给任何用户或是用户组设置任何文件/目录的访问权限(注意的是有些不支持数字模式的权限给定) ACL有什么用?? 作为UGO权限管理的补充,acl有GUO办不到或者是难以办到的功能 &…

    Linux干货 2016-08-05