从文件中打印与特定字段匹配的行

发布于 2024-09-19 19:45:06 字数 283 浏览 6 评论 0原文

我有很多行形式: A:B:C

我想打印那些行(完整),其中第三个字段(由 : 分隔的字段)包含特定模式。

示例:

new/old:california/new york:/ms/dist/fx/PROJ/fx/startScript

new/old:startScript/new york:/ms/dist/fx/PROJ/fx/stopScript

搜索模式 startScript 时,应打印第一行而不是第二行。

谢谢,

贾格拉蒂

I have many lines of form:
A:B:C

I want to print those lines(complete) where the 3rd field (fields separated by :) contain a certain pattern.

Example:

new/old:california/new york:/ms/dist/fx/PROJ/fx/startScript

new/old:startScript/new york:/ms/dist/fx/PROJ/fx/stopScript

When searching for pattern startScript, the 1st line should be printed and not the 2nd one.

Thanks,

Jagrati

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

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

发布评论

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

评论(3

此岸叶落 2024-09-26 19:45:40
awk -F":" '$3~/startScript$/' file
awk -F":" '$3~/startScript$/' file
笑,眼淚并存 2024-09-26 19:45:36

一般的解决方案是使用 awk 但值得注意的是,在您的具体示例中,有一个更简单的解决方案 - 您可以只使用 grep:

grep 'startScript
 yourfile

The general solution is to use awk but it is worth noting that in your specific example there is a much simpler solution - you can just use grep:

grep 'startScript
 yourfile
终陌 2024-09-26 19:45:30

用冒号分隔,然后检查第三个字段:

awk -F : '$3 ~ /startScript/ { print }'

Separate on colon, then check third field:

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