马哥教育网络班22期第五周课程练习1

1、cat /etc/passwd  | egrep "^root|^fedora|^user1"| cut -d":" -f1,7 

2、egrep -o  "[^[:space:]]+\(\)" /etc/rc.d/init.d/functions  

3、echo "/etc/rc.d/init.d/functions" | egrep  -o '[^/]+/?$' | egrep -o '[^/]+'

4、echo /etc/rc.d/ | egrep  -o '[^/]+/?$' | egrep -o '[^/]+'

5、ifconfig | egrep -o "[1-9][0-9]?|1[0-9]{2}|2[0-4][0-9]|25[0-5]"

ifconfig | egrep -o "(\<([0,1]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\>\.){3}\<([0,1]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\>"

6、egrep "[[:alnum:]]+_?[[:alnum:]]+@[[:alnum:]]+\.[[:alpha:]]+\.?[[:alpha:]]+?"

7、find /var -user root -a -group mail -exec ls -ld {} \; 

8、find / -nogroup  -o -nouser 

find / \( -nouser -o -nogroup \) -atime -3

9、find /etc -type f -perm -222

10、find /etc -size +1M -type f 

11、find /etc/init.d/ -perm -113

12、find /usr -not \( -user root -o -user bin -o -user hadoop \) -type f 

13、find /etc -not -perm /222 

14、find /etc/ -mtime -7 -not \( -user root -o -user hadoop \) -type f 

原创文章,作者:未闻花名,如若转载,请注明出处:http://www.178linux.com/45676

(0)
未闻花名未闻花名
上一篇 2016-09-15
下一篇 2016-09-15

相关推荐

  • Homework Week-2 Linux文件管理

    1、Linux上的文件管理命令都有哪些,其常用的使用方法及其相关示例演示。 文件管理工具:cp, mv, rm         cp命令:copy  源文件  目标文件                单源复制:cp [O…

    Linux干货 2016-08-22
  • 用户和组管理类命令的使用

    1.列出当前系统所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示以此即可; who | cut -d' ' -f1 | sort | uniq 2.取出最后登录到当前系统的用户的相关信息; who | head&nb…

    Linux干货 2016-11-21
  • HAProxy浅说

    HAProxy浅说:    HAProxy响应码:        200:请求正常,响应正常,也就是正常响应码     301:配置使用的重定向,以下都是有关于重定向的一些响应码,不做解释     302:    &nb…

    2017-05-18
  • corosync+pacemaker+drbd+mysql配置安装详解

    一,  基本环境介绍及基本环境配置 节点1: node1.hulala.com      192.168.1.35     centos6.5_64    添加8G新硬盘 节点2: node1.hulala.com      192.168.1.36…

    Linux干货 2016-05-08
  • 0805作业

    课堂练习 1.找出ifconfig 命令结果中本机的所有IPv4 地址   ifconfig|tr -cs '[0-9].' '\n'|sort -ut '.' -k3 2.查出分区空间使用率的最大百分比值   df|tr -s ' '|cut -d&quot…

    Linux干货 2016-08-07
  • linux学习笔记: shell脚本编程相关(上)

    前言 unix/linux操作系统下的shell,是一种壳,其目的是提供一个用户与计算机相互交互的命令接口,通过输入各种命令,达到操作的目的。 与此同时,shell支持控制流程,进而可以组合出各种各样的应用实例。 shell脚本的格式  首行shebang机制:  bash脚本,首行添加#!/bin/bash&nbsp…

    Linux干货 2017-04-18

评论列表(1条)

  • 马哥教育
    马哥教育 2016-09-19 18:23

    下次最好能把题目也写上