简单文本搜索 Bash

发布于 2024-11-04 13:43:27 字数 83 浏览 4 评论 0原文

我有一个 10 k 行的文本文件。如何提取出现某个关键字的所有行?至关重要的是,我能够选择出现特定文本模式的整行。我怎样才能在 bash 中做到这一点?

I have a text file with 10 k lines. How do I extract all the lines where a certain keyword appears? It's fundamental that I am able to select the entire line where a certain text pattern shows up. How can I do this in bash?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

铃予 2024-11-11 13:43:27

使用 grep 搜索文本并打印匹配行:

grep yourKeyword yourFile.txt

如果模式由多个单词组成,则必须引用该模式:

grep "your key string" yourFile.txt

Use grep to search for text and print matching lines:

grep yourKeyword yourFile.txt

If the pattern consists of several words, you must quote the pattern:

grep "your key string" yourFile.txt
话少情深 2024-11-11 13:43:27

除了使用 grep 之外,您还可以使用 awk。另外,awk 具有在搜索行时进行处理的优点。

awk '/pattern/{ do stuff }' file

Besides using grep you can also use awk. Plus, awk has the advantage of doing processing as it searches the lines..

awk '/pattern/{ do stuff }' file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文