I have two files.
Match
Match the first1st column of first file to first1st column of second file and print entire line of the second file
Second.
Second file is a tab<tab> separated file. I
I have tried many awkawk one liners, but all remove duplicate values. like ALike A and CC here. I want to preserve these.
File 1File 1:
A B C D A C File 2File 2:
A abc B cde C abe D acc Output:
A abc B cde C abe D acc A abc C abe