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

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

  • 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

相关推荐

  • OpenSSL

    OpenSSL由三部分组成:             libencrypto库             libssl库 …

    Linux干货 2017-05-30
  • Linux学习总结&day07-正则表达式&文本处理工具

    第一部分、正则表达式     1、什么是正则表达式     正则表达式就是处理字符串的方法,它是以行为单位来进行字符串的处理行为,正则表达式通过一些特殊符号的辅助,可以让用户轻易的达到查找、删除、替换某特定字符串的处理程序。     正则表…

    Linux干货 2016-08-08
  • Awk

    awk各种详细使用方法

    Linux干货 2018-01-02
  • exit和退出码

    用途说明 exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。   常用参数 格式:exitn 退出。设置退出码为n。(Causethe shell to exit with a status of n.)   格式:exit 退出。退出码不变,即为最后一个命令的退出码。(Ifn is omitted, the e…

    Linux干货 2016-01-14
  • 马哥教育网络班21期+第6周课程练习

    VIM基础知识 常用模式: 编辑模式–>命令模式 输入模式 末行模式:内置的命令行接口 模式转换: 编辑模式–>输入模式 i:在光标所在处前转换为输入模式; a:在光标所在后面转入输入模式; o:在当前光标所在行的下方打开一个新行,并转为输入模式; I:在当前光标所在行的行首输入; A:在当前光标所在行的行尾输入; O:在当前光标所在行的上方…

    Linux干货 2016-08-15
  • LVS(Linux Virtual Server)学习笔记

    LVS(Linux Virtual Server)学习笔记 此文主要对lvs负载均衡学习的总结,一为记录,二为巩固。主要介绍:1、lvs基础;2、lvs的配置;3、lvs的实现 前提:负载均衡(LB Cluster)     负载均衡实现方法有两种:硬件实现和软件实现;    &…

    Linux干货 2017-02-13

评论列表(1条)

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

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