如何连接 bash 中 2 个文件的行

How to cocatinate rows from 2 files in bash

我有 2 个文件: nodes.txt

node1
node2
node3

descriptions.txt

Description1
Description2
Description3

如何进行循环并将输出作为 2 个文件的连接行?

output.txt

node1 Description1
node2 Description2
node3 Description3
paste -d' ' nodes.txt descriptions.txt