Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个文件,一个用 ip 填充,一个 ip 在一行中,另一个名为 hosts 的文件包含 ip 文件中 ip 的解析名称。我正在尝试创建一个主机文件,因此我尝试从 ip 文件中获取第一行,然后插入一个空白,然后从主机文件中解析主机,并对每个 ip/主机执行相同的操作。实现这一目标的最佳方式是什么?
ip的文件如下所示:
1.1.1.1 1.1.1.2 1.1.1.3 1.1.1.4
主机文件如下所示:
服务器01 服务器02 服务器03 服务器04
我假设两者都是有序的,在这种情况下,您需要名为paste. 就像是:
paste
paste -d" " ips.txt names.txt