使用 awk 仅获取行的一部分

发布于 2024-08-07 09:03:40 字数 237 浏览 4 评论 0原文

我有一个日志文件,我使用 awk 来提取所需的列。我的命令是

awk '{ print $2" "$5" " $6}' log.txt

$5 列包含服务器名称,格式可以类似于 @:server1@:@:@:, server2@:@:@:@:@:, @:@:Server3 ,没有固定数量的 @: 符号。

如何修改我的语句,以便从第 5 列中删除所有“@:”以仅获取服务器名称?

I have a log file and i use awk to extract the required columns. My command is

awk '{ print $2" "$5" " $6}' log.txt

The $5 column contains the servername and the format can be like @:server1@:@:@:, server2@:@:@:@:@:, @:@:Server3 with no fixed amount of @: symbols.

How do I modify my statement so that I remove all the '@:' from the column 5 to get only the server name?

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

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

发布评论

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

评论(2

左秋 2024-08-14 09:03:40

您可以使用 gensub 函数。

awk '{ print $2, gensub(/@:/, "", "g", $5), $6}' log.txt

编辑:请参阅下面格伦·杰克曼的评论,了解可能的可移植性影响。

You can use the gensub function.

awk '{ print $2, gensub(/@:/, "", "g", $5), $6}' log.txt

EDIT: See glenn jackman's comment, below, for possible portability implications.

冷情妓 2024-08-14 09:03:40

我建议这样:

awk '{ sub("^(@:)*","",$5); sub("(@:)*$","",$5); print $2" "$5" "$6 }'

请注意,您还可以编写 print $2,$5,$6 - ',' 被输出字段分隔符替换,默认情况下为空格。

(编辑以从字符串末尾删除“@:”)

I'd suggest something like this:

awk '{ sub("^(@:)*","",$5); sub("(@:)*$","",$5); print $2" "$5" "$6 }'

Note that you can also write print $2,$5,$6 - the ',' is replaced by the output field separator, which is by default a space.

(edited to remove "@:" from the end of the string as well)

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