如何在unix中使用awk获得所需的输出

发布于 2024-12-06 14:42:20 字数 291 浏览 0 评论 0原文

我是 awk 的新手,我遇到了一个问题。

我有一个文件:

startpoint--A
endpoint--B
startpoint--C
endpoint--D

我希望在列中输出所需的输出,以便在起始点下,我拥有所有起始变量(A,C),在端点下拥有所有结束变量(B,D)。例如:

startpoint  endpoint
 A          B
 C          D

我怎样才能用 awk 来完成这个任务?

I'm new to using awk, and I'm stuck on a problem.

I have a file:

startpoint--A
endpoint--B
startpoint--C
endpoint--D

I want the output as desired in a column so that under startpoint, I have all the start variables(A,C) and under endpoint all the end varibles(B,D). For example:

startpoint  endpoint
 A          B
 C          D

How can I accomplish this with awk?

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

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

发布评论

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

评论(2

请你别敷衍 2024-12-13 14:42:20

据推测,您的数据文件会交替使用 startpointendpoint 行。在这种情况下,您只需保存最近的起点,并在遇到终点时将它们打印出来。

$ cat data.txt
startpoint--A
endpoint--B
startpoint--C
endpoint--D

$ cat points.awk
BEGIN { print "startpoint  endpoint" }
$1 == "startpoint" { sp = $3 }
$1 == "endpoint" { printf "%-12s%s\n", sp, $3 }

$ awk -F- -f points.awk data.txt
startpoint  endpoint
A           B
C           D

Presumably your data file alternates startpoint and endpoint lines. In that case you can just save the most recent startpoint and print them both out when you encounter an endpoint.

$ cat data.txt
startpoint--A
endpoint--B
startpoint--C
endpoint--D

$ cat points.awk
BEGIN { print "startpoint  endpoint" }
$1 == "startpoint" { sp = $3 }
$1 == "endpoint" { printf "%-12s%s\n", sp, $3 }

$ awk -F- -f points.awk data.txt
startpoint  endpoint
A           B
C           D
北座城市 2024-12-13 14:42:20

不需要 awk,cutpaste 就可以了:

{
  printf "startpoint\tendpoint\n"
  cut -d '-' -f 3 data.txt | paste - -
} | column -t

我假设所有数据都是“格式良好”的,端点紧跟在起点之后。

Don't need awk, cut and paste will do:

{
  printf "startpoint\tendpoint\n"
  cut -d '-' -f 3 data.txt | paste - -
} | column -t

I assume that all you data is "well-formed", with an endpoint immediately following a startpoint.

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