grep递归查找头文件_Grep命令教程–如何使用递归查找在Linux和Unix中搜索文件

grep递归查找头文件

grep stands for Globally Search For Regular Expression and Print out. It is a command line tool used in UNIX and Linux systems to search a specified pattern in a file or group of files.

grep代表全局搜索正则表达式并打印出来 。 它是UNIX和Linux系统中使用的命令行工具,用于搜索文件或文件组中的指定模式。

grep comes with a lot of options which allow us to perform various search-related actions on files. In this article, we'll look at how to use grep with the options available as well as basic regular expressions to search files.

grep带有许多选项,使我们可以对文件执行各种与搜索相关的操作。 在本文中,我们将研究如何将grep与可用选项以及基本正则表达式一起使用来搜索文件。

如何使用grep (How to use grep)

Without passing any option, grep can be used to search for a pattern in a file or group of files. The syntax is:

在不传递任何选项的情况下,可以使用grep搜索文件或文件组中的模式。 语法为:

grep '<text-to-be-searched>' <file/files>

Note that single or double quotes are required around the text if it is more than one word.

请注意,如果文本超过一个单词,则必须在文本周围加上单引号或双引号。

You can also use the wildcard (*) to select all files in a directory.

您也可以使用通配符(*)选择目录中的所有文件。

The result of this is the occurences of the pattern (by the line it is found) in the file(s). If there is no match, no output will be printed to the terminal.

结果是文件中出现了模式(通过找到的行)。 如果不匹配,则不会将任何输出打印到终端。

For example, say we have the following files (called grep.txt):

例如,假设我们有以下文件(称为grep.txt):

Hello, how are you
I am grep
Nice to meet you

The following grep command will search for all occurences of the word 'you':

以下grep命令将搜索单词“ you”的所有出现:

grep you grep.txt

The result for this is:

结果是:

Hello, how are you
Nice to meet you

you is expected to have a different color than the other text to easily identify what was searched for.

you应该使用与其他文字不同的颜色,以轻松识别所搜索的内容。

But grep comes with more options which help us achieve more during a search operation. Let's look at nine of them while applying them to the example above.

但是grep带有更多选项,可帮助我们在搜索操作中实现更多目标。 在将它们应用于上面的示例时,让我们看一下其中的九个。

grep使用的选项 (Options used with grep)

1. -n (--line-number)-列出行号 (1. -n (--line-number) - list line numbers)

This prints out the matches for the text along with the line numbers. If you look at the result we have above, you'll notice there are no line numbers, just the matches.

这会打印出文本的匹配项以及行号。 如果看上面的结果,您会发现没有行号,只有匹配项。

grep you grep.txt -n

Result:

结果:

1: Hello, how are you
3: Nice to meet you

2. -c (--count)-打印匹配的行数 (2. -c (--count) - prints the number of lines of matches)

grep you grep.txt -c

Result:

结果:

2

Note that if there was another 'you' on line one, option -c would still print 2. This is because it is concerned with the number of lines where the matches appear, not the number of matches.

请注意,如果第一行上还有另一个“您”,则选项-c仍会打印2。这是因为它与匹配项出现的行数有关,而不是匹配数。

3. -v (--invert-match)-打印与指定模式不匹配的行 (3. -v (--invert-match) - prints the lines that do not match the specified pattern)

grep you grep.txt -v -n

Result:

结果:

2. I am grep

Notice that we also used option -n? Yes, you can apply multiple options in one command.

注意,我们还使用了-n选项。 是的,您可以在一个命令中应用多个选项。

4. -i (--ignore-case)-用于不区分大小写 (4. -i (--ignore-case) - used for case insensitivity)

# command 1
grep You grep.txt
# command 2
grep YoU grep.txt -i

Results:

结果:

# result 1
# no result
# result 2
Hello, how are you
Nice to meet you

5. -l (--files-with-matches)-打印与模式匹配的文件名 (5. -l (--files-with-matches) - print file names that match a pattern)

# command 1
grep you grep.txt -l
# command 2
grep You grep.txt -i -l

Results:

结果:

# result 1
grep.txt
# result 2
# all files in the current directory that matches
# the text 'You' case insensitively
#### 6. `-w` (--word-regexp) - print matches of the whole word

By default, grep matches strings which contain the specified pattern. This means that grep yo grep.txt will print the same results as grep yo grep.txt because 'yo' can be found in you. Similarly, 'ou'.

默认情况下, grep匹配包含指定模式的字符串。 这意味着grep yo grep.txt将打印与grep yo grep.txt相同的结果,因为可以在您中找到“ yo”。 同样,“ ou”。

With the option -w, grep ensures that the matches are exactly the same pattern as specified. Example:

使用-w选项, grep确保匹配项与指定的模式完全相同。 例:

grep yo grep.txt -w

Result:

结果:

No result!

没有结果!

7. -o (--only-matching)-仅打印匹配的图案 (7. -o (--only-matching) - print only the matched pattern)

By default, grep prints the line where the matched pattern is found. With option -o, only the matched pattern is printed line by line. Example:

默认情况下, grep打印找到匹配模式的行。 使用选项-o ,仅匹配的图案逐行打印。 例:

grep yo grep.txt -o

Result:

结果:

yo

8. -A (--context)和-B (--before-context)-在(分别)匹配的模式之后和之前打印行 (8. -A (--after-context) and -B (--before-context) - print the lines after and before (respectively) the matched pattern)

grep grep grep.txt -A 1 -B 1

Result:

结果:

Hello, how are you
I am grep
Nice to meet you

This matched pattern is on line 2. -A 1 means one line after the matched line and -B 1 means one line before the matched line.

此匹配的模式在第2行上。- -A 1表示匹配线之后的一行, -B 1表示匹配线之前的一行。

There's also a -C (--context) option which is equal to -A + -B. The value passed to -C would be used for -A and -B.

还有一个-C (--context)选项,它等于-A + -B 。 传递给-C的值将用于-A-B

9. -R (--dereference-recursive)-递归搜索 (9. -R (--dereference-recursive) - recursive search)

By default, grep cannot search directories. If you try doing so, you'll get an error ("Is a directory"). With option -R, searching files within directories and subdirectories becomes possible. Example:

默认情况下, grep无法搜索目录。 如果尝试这样做,将会收到错误消息(“是目录”)。 使用选项-R ,可以在目录和子目录中搜索文件。 例:

grep you .

Result:

结果:

# 'you' matches in a folders
# and files starting from the
# current directory

模式的正则表达式 (Regular expressions for patterns)

grep also allows basic regular expressions for specifying patterns. Two of them are:

grep还允许用于指定模式的基本正则表达式。 其中两个是:

1. ^pattern一行的开始 (1. ^pattern - start of a line)

This pattern means that the grep will match the strings whose lines begin with the string specified after ^. Example:

此模式意味着grep将匹配其行以^之后指定的字符串开头的字符串。 例:

grep ^I grep.txt -n

Result:

结果:

2: I

2. pattern$ -行尾 (2. pattern$ - end of a line)

In contrast with ^, $ specifies patterns that will be matched if the line ends with the string before $. Example:

^相反, $指定如果行以$之前的字符串结尾的模式将匹配。 例:

grep you$ grep.txt

Result:

结果:

1: Hello, how are you
3: Nice to meet you

结语 (Wrap up)

grep is a powerful tool for searching files in the terminal. Understanding how to use it gives you the ability to easily find files via the terminal.

grep是用于在终端中搜索文件的强大工具。 了解如何使用它使您能够通过终端轻松查找文件。

There are more options attached to this tool. You can find with man grep.

此工具附带了更多选项。 您可以与man grep一起找到。

翻译自: https://www.freecodecamp.org/news/grep-command-tutorial-how-to-search-for-a-file-in-linux-and-unix/

grep递归查找头文件

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390298.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++ 前置声明

&#xff08;一&#xff09;class的前置声明 class的前置声明有两种。 pre.hclass PreA {}; main.hclass PreA; class Main {};//或者 class Main {class PreA* A; }; (二) struct前置声明 struct的前置声明只能用第一种。 &#xff08;三&#xff09; 有typedef的前置声明 Pr…

2.18 特殊权限set_uid 2.19 特殊权限set_gid 2.20 特殊权限stick_bit 2.21 软链接文件 2.22 硬连接文件...

2019独角兽企业重金招聘Python工程师标准>>> 特殊权限set_uid set_uid:该权限针对二进制可执行文件&#xff0c;使文件在执行阶段具有文件所有者的权限&#xff1b; 通俗一点讲就是&#xff0c;普通用户想要访问一个没有其他用户可执行权限的目录时&#xff0c;暂时…

345. 反转字符串中的元音字母

345. 反转字符串中的元音字母 给你一个字符串 s &#xff0c;仅反转字符串中的所有元音字母&#xff0c;并返回结果字符串。 元音字母包括 ‘a’、‘e’、‘i’、‘o’、‘u’&#xff0c;且可能以大小写两种形式出现。 示例 1&#xff1a; 输入&#xff1a;s “hello” 输…

通过制作数字桌面游戏和Web应用程序学习JavaScript

Building 2D games can be a great way to learn JavaScript, especially when working through the basics of complex tabletop game logic.制作2D游戏可能是学习JavaScript的好方法&#xff0c;尤其是在研究复杂的桌面游戏逻辑基础时。 In this series, I’m going to intr…

【HAVENT原创】Node Express API 通用配置

为什么80%的码农都做不了架构师&#xff1f;>>> ( 基于 Express 4.x ) 启动文件 /app.js&#xff1a; var express require(express); var bodyParser require(body-parser); var proxy require(http-proxy-middleware); var path require(path);var index re…

C#使用Json.NET解析Json

本文转载自 http://xiaosheng.me/2016/10/01/article25/ 最近在 C# 项目中需要使用到 Json 格式的数据&#xff0c;我简单上网搜索了一下&#xff0c;基本上有两种操作 Json 数据的方法&#xff1a; 使用 Windows 系统自带的类使用第三方的包本着“第三方包一定有比系统自带类优…

现在JavaScript日期–如何在JavaScript中获取当前日期

Many applications you build will have some sort of a date component, whether its the creation date of a resource, or the timestamp of an activity. 您构建的许多应用程序都将具有某种日期组件&#xff0c;无论是资源的创建日期还是活动的时间戳。 Dealing with date…

233. 数字 1 的个数

给定一个整数 n&#xff0c;计算所有小于等于 n 的非负整数中数字 1 出现的个数。 示例 1&#xff1a; 输入&#xff1a;n 13 输出&#xff1a;6 示例 2&#xff1a; 输入&#xff1a;n 0 输出&#xff1a;0 解题思路 正确性证明 例如&#xff1a;对于n3015&#xff0c…

Linux串口设置参数

为什么80%的码农都做不了架构师&#xff1f;>>> 在Linux环境下&#xff0c;串口名从ttyS0开始依次是ttyS1、ttyS2等。在本程序中&#xff0c;使用ttyS0作为通信串口。在打开ttyS0的时候选项 O_NOCTTY 表示不能把本串口当成控制终端&#xff0c;否则用户的键盘输入信…

STM32F013 十元板

我大拇指般大小。STM32F103C8T6&#xff0c;64K Flash&#xff0c;20K RAM&#xff0c;m3的核。十元&#xff0c;应该是价格极限了吧。 通过USB供电&#xff08;5V&#xff09;&#xff0c;也可以排针3.3V供电。可惜没有引出5V排针。USB口可以供电和USB通讯&#xff0c;没有USB…

如何在Python中建立和训练K最近邻和K-Means集群ML模型

One of machine learnings most popular applications is in solving classification problems.机器学习最流行的应用之一是解决分类问题。 Classification problems are situations where you have a data set, and you want to classify observations from that data set in…

552. 学生出勤记录 II

552. 学生出勤记录 II 可以用字符串表示一个学生的出勤记录&#xff0c;其中的每个字符用来标记当天的出勤情况&#xff08;缺勤、迟到、到场&#xff09;。记录中只含下面三种字符&#xff1a; ‘A’&#xff1a;Absent&#xff0c;缺勤 ‘L’&#xff1a;Late&#xff0c;迟…

C/C++中计算函数运行时间

#include<stdio.h> #include<time.h> clock_t start,stop;//clock_t 是clock&#xff08;&#xff09;函数返回变量的类型 double duration;//记录被测函数的运行时间&#xff0c;以秒为单位 int main() { startclock();//开始计时 MyFunction();//把被测函数加在这…

作为一名前端开发工程师,你必须掌握的WEB模板引擎:Handlebars

为什么需要使用模板引擎&#xff1f; 关于为什么要使用模板引擎&#xff0c;按照我常说的一句话就是&#xff1a;不用重复造轮子了。 简单来说&#xff0c;模板最本质的作用是“变静为动”&#xff0c;一切利于这方面的都是优势&#xff0c;不利于的都是劣势。要想很好地实现“…

extjs 实用开发指南_如何提出有效问题:针对开发人员的实用指南

extjs 实用开发指南Learning is a journey that never ends. At every point in your career, you will keep learning, re-learning, and un-learning. 学习是一个永无止境的旅程。 在职业生涯的每个阶段&#xff0c;您都会不断学习&#xff0c;重新学习和不学习。 The abil…

LOJ 6270

最近&#xff08;一直&#xff09;有点&#xff08;很&#xff09;蠢 按照区间大小排序做区间包含多少区间的话 只用考虑 左端点比当前左端点小的和右端点比当前右端点大的&#xff0c;因为不可能同时满足 关于K&#xff0c;就在做到K的时候减一下就好了&#xff0c;一直傻逼在…

Zabbix3.4安装详细步骤

Zabbix3.4安装的详细步骤一、zabbix介绍现在大多数公司都会用到监控软件&#xff0c;主流的监控软件就是Zabbix了&#xff0c;当然还会有Nagios等其他的软件&#xff1a;zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。zabbix能监视各种…

软件自学成才到公司要学历吗_作为一名自学成才的移动开发人员,我在旅途中学到了什么

软件自学成才到公司要学历吗In this post, Ill share my entire journey about how I became a professional mobile developer.在这篇文章中&#xff0c;我将分享我如何成为一名专业的移动开发人员的整个过程。 I hope that reading about my experience will help you refle…

cs231n---语义分割 物体定位 物体检测 物体分割

1 语义分割 语义分割是对图像中每个像素作分类&#xff0c;不区分物体&#xff0c;只关心像素。如下&#xff1a; &#xff08;1&#xff09;完全的卷积网络架构 处理语义分割问题可以使用下面的模型&#xff1a; 其中我们经过多个卷积层处理&#xff0c;最终输出体的维度是C*H…

http协议内容

前言&#xff1a; http协议&#xff1a; 对浏览器客户端 和 服务器端 之间数据传输的格式规范http1.0&#xff1a;当前浏览器客户端与服务器端建立连接之后&#xff0c; 只能发送一次请求&#xff0c;一次请求之后连接关闭。 http1.1&#xff1a;当前浏览器客户端与服务器端建…