Hi I have more than 10 files ( Only two columns ) and i want to join them with row names,
file1
a 3
b 4
c 6
file2
c 7
b 33
f 56
file3
d 4
e 9
f 44
a 99
Output
file1 file2 file3
a 3 0 99
b 4 33 0
c 6 7 0
e 0 0 9
d 0 0 4
f 0 56 44
below link answers perfect to my requirement, but it works only for two files
Join multiple tables by row names
How do i do same for multiple (n) files. New to shell commands