马哥教育网络班22期+第5周课程练习

1、显示当前系统上root、fedora或user1用户的默认shell;

	[root@localhost ~]# awk -F: '{print $1,$7}' /etc/passwd| egrep "^\<(root|fedora|user1)\>" 
	root /bin/bash
	user1 /bin/bash
	fedora /bin/bash

2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();

	[root@localhost ~]# grep '\<[a-z]\+\>()' /etc/rc.d/init.d/functions 

3、使用echo命令输出一个绝对路径,使用grep取出其基名;

	[root@localhost tmp]# echo '/etc/fstab' |egrep -o '[^/]+/?$'

    扩展:取出其路径名

	echo '/etc/fstab' |egrep -o '^/.*/' 

4、找出ifconfig命令结果中的1-255之间数字;

	[root@localhost tmp]# ifconfig |egrep -o '\<([1-9]|[1-9][0-9]|[1|2][1-9][0-9])\>'

5、挑战题:写一个模式,能匹配合理的IP地址;

	[root@localhost tmp]# ifconfig |egrep -o "[1-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"

6、挑战题:写一个模式,能匹配出所有的邮件地址;

	[root@localhost tmp]#  egrep -o "[[:alnum:]]+@[[:alnum:]]+.[[:alnum:]]+"  test 
	abc@tom.com
	145@163.com
	565@qq.com
	bc@qqx.com

7、查找/var目录下属主为root,且属组为mail的所有文件或目录;

	[root@localhost tmp]# find /var -user root -a  -group mail

8、查找当前系统上没有属主或属组的文件;

	[root@localhost tmp]# find / \( -nouser -o -nogroup \) -type f

     进一步:查找当前系统上没有属主或属组,且最近3天内曾被访问过的文件或目录;

	[root@localhost tmp]# find / \( -nouser -o -nogroup \) -atime -3

9、查找/etc目录下所有用户都有写权限的文件;

	[root@localhost tmp]# find /etc -perm -222 -ls

10、查找/etc目录下大于1M,且类型为普通文件的所有文件;

	[root@localhost tmp]# find /etc -size +1M -type f -exec ls -lh {} \;

11、查找/etc/init.d/目录下,所有用户都有执行权限,且其它用户有写权限的文件;

	[root@localhost tmp]# find /etc/init.d/ -perm -113 -type f -ls 

12、查找/usr目录下不属于root、bin或hadoop的文件;

	[root@localhost tmp]# find /usr -not \( -user root -o -user bin -o -user hadoop \) -type f

13、查找/etc/目录下至少有一类用户没有写权限的文件;

	[root@localhost tmp]# find /etc -not -perm -222 -type f -ls

14、查找/etc目录下最近一周内其内容被修改过,且不属于root或hadoop的文件;

	[root@localhost tmp]# find /etc -not \( -user root -o -user hadoop \) -atime -7 -type f

原创文章,作者:N22_上海_长清,如若转载,请注明出处:http://www.178linux.com/45304

(0)
N22_上海_长清N22_上海_长清
上一篇 2016-09-15
下一篇 2016-09-15

相关推荐

  • 第四周作业

    cp、grep、sueradd、chmod、vim命令的一些用法

    Linux干货 2017-12-24
  • mysql5.5.32多实例配置

    操作系统:CentOS release 6.7 (Final) 内核版本:2.6.32-573.el6.x86_64 mysql版本号:mysql-5.5.32 1)安装mysql所需的依赖包 # adduser mysql -s /sbin/nologin -M # mkdir -p&n…

    Linux干货 2016-12-05
  • 正则表达式

    什么是正则表达式? 正则表达式(Regular Expression)是一种文本模式,包括普通字符(例如,a 到 z 之间的字母)和特殊字符(称为”元字符”)。正则表达式使用单个字符串来描述、匹配一系列匹配某个句法规则的字符串,许多程序设计语言都支持利用正则表达式进行字符串操作。正则表达式是烦琐的,但它是强大的,学会之后的应用会让你除…

    Linux干货 2017-06-01
  • Linux bash编程基础语法总结

    前言 在Linux学习过程中,我们无可避免的会碰到一个既让人喜欢,又令人头疼的神奇的东西——bash编程,即shell脚本。那么什么是shell脚本呢?shell是一个命令语言解释器,而shell脚本则是Linux命令的集合,按照预设的顺序依次解释执行,来完成特定的、较复杂的系统管理任务,类似于Windows中的批处理文件。本文带来的是bash编程的基础语法…

    Linux干货 2015-04-04
  • N22-冥界之王-第9周作业

    第九周    1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);   分别这两类用户的个数;通过字符串比较来实现;     declare -a shell  &n…

    Linux干货 2016-11-01
  • 用户和组管理类命令

    用户和组管理类命令 useradd useradd命令用于Linux中创建的新的系统用户 语法 useradd(选项)(参数) 选项 -c<备注>:加上备注文字。备注文字会保存在passwd的备注栏位中; -d<登入目录>:指定用户登入时的启始目录; -D:变更预设值; -e<有效期限>:指定帐号的有效期限; -f<…

    Linux干货 2018-03-18