I want to extract and combine a certain column from a bunch of text files into a single file as shown.
File1_example.txt
A   123   1
B   234   2
C   345   3
D   456   4
File2_example.txt
A   123   5
B   234   6
C   345   7
D   456   8
File3_example.txt
A   123   9
B   234   10
C   345   11
D   456   12
...
..
.
File100_example.txt
A   123   55
B   234   66
C   345   77
D   456   88
How can I loop through my files of interest and paste these columns together so that the final result is like below without having to type out 1000 unique file names?
1   5   9   ...  55
2   6   10  ...  66
3   7   11  ...  77
4   8   12  ...  88
 
     
     
    