These are 3 files:
file1 file2 file3
1 2 3 1 1 1 3 3 3
2 1 3 1 1 1 3 3 3
0 0 0 1 1 1 3 3 3
I want to join them together and have a final file like:
1 2 3 1 1 1 3 3 3
2 1 3 1 1 1 3 3 3
0 0 0 1 1 1 3 3 3
But when I use :
paste file1 file2 file3 > file4
I see gap in output(file4):
1 2 3 1 1 1 3 3 3
2 1 3 1 1 1 3 3 3
0 0 0 1 1 1 3 3 3
What should I do to not see these gaps?