Inner join on two text files

前端 未结 5 2050
陌清茗
陌清茗 2020-11-22 05:06

Looking to perform an inner join on two different text files. Basically I\'m looking for the inner join equivalent of the GNU join program. Does such a thing exist? If not,

5条回答
  •  抹茶落季
    2020-11-22 06:02

    You can use paste command to combine file :

    paste [option] source files [>destination file]
    

    for your example it would be

    paste file1.txt file2.txt >result.txt
    

提交回复
热议问题