美文网首页
grep 练习

grep 练习

作者: 悦时光_ | 来源:发表于2018-12-15 13:51 被阅读12次

    定义及功能解释

    Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户。

    grep的工作方式是这样的,它在一个或多个文件中搜索字符串模板。如果模板包括空格,则必须被引用,模板后的所有字符串被看作文件名。搜索的结果被送到标准输出,不影响原文件内容。

    grep [option] pattern file

    命令练习

        less /etc/passwd |grep 'systemd'
        less /etc/passwd |grep -w 'system'   #  精确匹配
        less /etc/passwd |grep -i System  #不区分大小写
        less /etc/passwd |grep -nie System -e syslog -e backup  #标行号,不区分大小写,either 关系
        less /etc/passwd |grep -f tex.txt  # 查找文件所包含的字符
    

    命令演示结果:


    图片.png
    命令演示,-nie -e

    相关文章

      网友评论

          本文标题:grep 练习

          本文链接:https://www.haomeiwen.com/subject/tinohqtx.html