Dear All,
I want to know whether there is any perl script availabe to compare more than two files and print out the matching rows,
for example if i have following files,
file_1
TPT 0.0520852296
RP11 0.1062639955
AC01 1.4112745088
AC00 0.4992644913
file_2
LINC 0.1648703511
AC00 0.1632039268
CTD 4.3654577641
RP1 0.1357422856
AC01 1.456789
AC00 0.56789
file_3
RP1 0.0034001871
Z8385 0.0183523803
LINC 0.0099523132
AC01 1.4112745088
AC00 0.356788899
.......
like this have many files but all files with just two columns
and I want my out put as,
AC01 1.4112745088 1.4112745088 1.456789
AC00 0.4992644913 0.356788899 0.56789
where the matching rows in three of thes files should be printed as output.
Thank you all