合并来自不同文件的列

发布于 2024-12-19 11:27:22 字数 365 浏览 0 评论 0原文

我有两个具有以下结构的文本文件:

文件 1

Column1:Column2
Column1:Column2
...

文件 2

Column3
Column3
...

我想创建一个具有以下文件结构的文件:

Column1:Column3
Column1:Column3
...

接受任何建议,但它将是如果解决方案可以从 Bash shell 或 sed / awk / perl / 完成,那就太好了...

I have two text files that have these structures:

File 1

Column1:Column2
Column1:Column2
...

File 2

Column3
Column3
...

I would like to create a file that has this file structure:

Column1:Column3
Column1:Column3
...

Open to any suggestions, but it would be nice if the solution can be done from a Bash shell, or sed / awk / perl / etc...

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

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

发布评论

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

评论(3

烟花易冷人易散 2024-12-26 11:27:22
cut -d: -f1 "File 1" | paste -d: - "File 2"

这将从文件 1 中剪切字段 1(以冒号分隔)并将其粘贴到文件 2 中的唯一列,并用冒号分隔输出字段。

cut -d: -f1 "File 1" | paste -d: - "File 2"

This cuts field 1 from File 1 (delimited by a colon) and pastes it with the only column in File 2, separating the output fields with a colon.

源来凯始玺欢你 2024-12-26 11:27:22

这是一个 awk 解决方案。它假设 file1 和 file2 具有相同的行数。

awk -F : '{ printf "%s:",$1; getline < "file2"; print }' < file1

Here's an awk solution. It assumes file1 and file2 have an equal number of lines.

awk -F : '{ printf "%s:",$1; getline < "file2"; print }' < file1
嘦怹 2024-12-26 11:27:22

由于尚未建议纯 bash 实现,因此也假设相同数量的行(仅限 bash v4):

mapfile -t file2 < file2

index=0
while IFS=: read -r column1 _; do
        echo "$column1:${file2[index]}"
        ((index++))
done < file1

bash v3:

IFS=
\n' read -r -d '' file2 < file2

index=0
while IFS=: read -r column1 _; do
        echo "$column1:${file2[index]}"
        ((index++))
done < file1

Since a pure bash implementation hasn't been suggested, also assuming an equal number of lines (bash v4 only):

mapfile -t file2 < file2

index=0
while IFS=: read -r column1 _; do
        echo "$column1:${file2[index]}"
        ((index++))
done < file1

bash v3:

IFS=
\n' read -r -d '' file2 < file2

index=0
while IFS=: read -r column1 _; do
        echo "$column1:${file2[index]}"
        ((index++))
done < file1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文