Merge two files in linux with different column

后端 未结 4 679
野趣味
野趣味 2020-12-28 08:58

I have two files in linux, the first file has 4 columns and the second has 2 columns. I want to merge these files into a new file that has the first 3 columns from file 1 an

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-28 09:19

    you can try this one without paste command:
    awk '{print $1}{print $2}{print $3}' file1 >> mergedfile
    awk '{print $2}' file2 >> mergedfile
    

提交回复
热议问题