文本过滤、文本查找工具应用示例

文本过滤、文本查找工具应用示例

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

    [root@localhost ~]# cat /etc/passwd|grep "^root\>\|^fedora\>\|^user1\>"|cut -d: -f7
      /bin/bash
      /bin/bash
      /bin/bash
  • 2.找出/etc/rc.d/init.d/functions文件中某个单词后面跟一组小括号的行,形如:hello()

    [root@localhost ~]# cat /etc/rc.d/init.d/functions|grep -o "[[:alpha:]]\+\>()"
     checkpid()
     checkpids()
     kill()
     run()
     pidof()
     daemon()
     killproc()
     pidfileofproc()
     pidofproc()
     status()
     success()
     failure()
     passed()
     warning()
     stage()
     success()
     failure()
     passed()
     warning()
     action()
     strstr()
     file()
     true()
     false()
     sysctl()
  • 3.使用echo命令输出一个绝对路径,使用grep取出其基名;扩展,取出其路径名

    [root@localhost ~]# echo "/etc/rc.d/init.d/functions"|grep -o  "[^\/]\+\/\?$"
     functions
    [root@localhost ~]# echo "/etc/rc.d/init.d/functions"|grep -o  "^\/[^[:space:]]\+\/"
     /etc/rc.d/init.d/
  • 4.找出ifconfig命令结果中1-255之间的数字

    [root@localhost ~]# ifconfig|grep  -E  -o "([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])"
    33
    41
    63
    150
    192
    168
    91
    128
    255
    255
    255
    192
    168
    91
    255
    6
    80
  • 5.挑战题:写一个模式,能匹配合理的IP地址

    [root@localhost ~]# ifconfig|grep  -E  -o "([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])"
     192.168.91.128
     192.168.91.255
     192.168.122.1
     192.168.122.255
  • 6.挑战题:写一个模式,能匹配所有的邮件地址

    [root@localhost ~]# echo "1234567nn@163.com"|grep -o "[[:alnum:]]\+@[[:alnum:]]\+\.[[:alpha:]]\+"
     1234567nn@163.com
  • 7.查找/var目录下属主为root,且属组为mail的所有文件或目录

    [root@localhost ~]# find /var -user root -a -group mail -ls
     67292968    0 drwxrwxr-x   2 root     mail          129 Jul 28 18:28 /var/spool/mail
  • 8.查找当前系统上没有属主或属组的文件;进一步查找当前系统上没有属主或属组,且最近3天内曾经被访问过的文件或目录

    [root@localhost ~]# find / -nouser  -a -nogroup  -ls
    [root@localhost ~]# find / -nouser  -a -nogroup -a -atime -3  -ls
  • 9.查找/etc目录下所有用户都有写权限的文件

    [root@localhost ~]# find /etc -perm -222 -ls
     33554500    0 lrwxrwxrwx   1 root     root           17 Jun 30 01:53 /etc/mtab -> /proc/self/mounts
     35553953    0 lrwxrwxrwx   1 root     root           56 Jun 30 02:10 /etc/fonts/conf.d/65-0-lohit-marathi.conf -> /usr/share/fontconfig/conf.avail/65-0-lohit-marathi.conf
     33722185    0 lrwxrwxrwx   1 root     root           56 Jun 30 01:57 /etc/fonts/conf.d/59-liberation-mono.conf -> /usr/share/fontconfig/conf.avail/59-liberation-mono.conf
     35553954    0 lrwxrwxrwx   1 root     root           59 Jun 30 02:10 /etc/fonts/conf.d/65-0-lohit-devanagari.conf -> /usr/share/fontconfig/conf.avail/65-0-lohit-devanagari.conf
     33722192    0 lrwxrwxrwx   1 root     root           56 Jun 30 01:57 /etc/fonts/conf.d/59-liberation-sans.conf -> /usr/share/fontconfig/conf.avail/59-liberation-sans.conf
     35553957    0 lrwxrwxrwx   1 root     root           54 Jun 30 02:11 /etc/fonts/conf.d/66-ucs-miscfixed.conf -> /usr/share/fontconfig/conf.avail/66-ucs-miscfixed.conf
     33735545    0 lrwxrwxrwx   1 root     root           59 Jun 30 01:57 /etc/fonts/conf.d/10-scale-bitmap-fonts.conf -> /usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf
     35553958    0 lrwxrwxrwx   1 root     root           50 Jun 30 02:11 /etc/fonts/conf.d/60-open-sans.conf -> /usr/share/fontconfig/conf.avail/60-open-sans.conf
  • 10.查找/etc目录下大于1M,且类型为普通文件的所有文件

    [root@localhost ~]# find /etc -size +1M -a -type f -ls
     102108754 1364 -rw-r--r--   1 root     root      1394978 Jul  9 05:37 /etc/selinux/targeted/contexts/files/file_contexts.bin
     68163210 3620 -rw-r--r--   1 root     root      3703887 Jul  9 05:37 /etc/selinux/targeted/policy/policy.30
     68163206 3620 -rw-r--r--   1 root     root      3703887 Jul  9 05:37 /etc/selinux/targeted/active/policy.kern
     68112876 7120 -r--r--r--   1 root     root      7289802 Jul  9 05:33 /etc/udev/hwdb.bin
     34410868 1336 -rw-r--r--   1 root     root      1367395 Nov  5  2016 /etc/brltty/zh-tw.ctb

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

(0)
N27_xiaoniN27_xiaoni
上一篇 2017-07-30
下一篇 2017-07-30

相关推荐

  • 自制linux和编译内核

    自制linux:(1)  分区并创建文件系统  fdisk /dev/sdb分两个必要的分区  /dev/sdb1 对应/boot /dev/sdb2 对应根  /mkfs.ext4 /dev/sdb1mkfs.ext4 /dev/sdb2  挂载bootmkdir /mnt/boot 子目录必须为bootm…

    Linux干货 2017-04-02
  • Shell脚本编程中的if、case、for、while、until命令

    为何要学编程中的if、case、for、while、until命令?        作为一个运维工程师,总会听到自动化,实际自动化离不开编写shell脚本,而shell脚本中却又离不开编程中的if、case、for、while、until, 这些关键字。 了解编程中的if、case、for、while、until命令,…

    Linux干货 2016-08-19
  • python基础_1

    变量/常量 常量:一旦赋值,就不能对它从新复制。python不存在常量 字面常量:一个单独出现的量,未赋值给任何变量或者常量 变量:就是一个名字,在固执符号的左边,这个名字可以指复制符号右边的内容。 变量列子: i = 3 print(i)  注:python 是强类型语言,是动态类型语言。(强类型指类型之间不能相互计算/动态类型是指变量是可以赋值…

    Linux干货 2017-10-10
  • 简单shell脚本习题

    习题 作业 简单shell脚本习题 习题1 答案 习题2 答案 习题3 答案 习题4 答案 习题5 答案 习题6 答案 习题1 编写脚本/root/bin/systeminfo.sh,显示当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核版本, CPU型号,内存大小,硬盘大小。 答案 #!/bin/bash IPADDR=$(…

    Linux干货 2017-04-10
  • HTTP详解(3)-http1.0 和http1.1 区别

    翻了下HTTP1.1的协议标准RFC2616,下面是看到的一些它跟HTTP1.0的差别。 1. Persistent Connection持久连接        在HTTP1.0中,每对Request/Response都使用一个新的连接。      …

    Linux干货 2015-04-04
  • 马哥教育网络第21期-第九周课程练习

    1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过 字符串比较来实现; #!/bin/bash nologin=$( cut -d: -f7 /etc/passwd | grep &#03…

    Linux干货 2016-11-14

评论列表(1条)

  • 马哥教育
    马哥教育 2017-08-04 16:15

    文本管理工具是非常重要的一项技能,从作业情况来看,掌握的还不错,继续努力。