我有两个排序的文本文件。文件 A 的数据如下所示:
adam
humanities
antwon
sciences
bernard
economics
castiel
sciences
dmitri
informatics
zoe
mathematics
文件 B 的数据如下所示:
adamburnston
antwonreed
justbernard
castiel
dmitrivalchenkov
zoematthews
我需要将文件 A(adam) 中的行替换为文件 B(adamburnston) 中的行。这两个文件都按字母顺序排列,并且包含相同数量的条目。我怎样才能达到这个结果?
预期输出:
adamburnston
humanities
antwonreed
sciences
justbernard
economics
castiel
sciences
dmitrivalchenkov
informatics
zoematthews
mathematics