-t, sets the deliminator to , -1 2 and -2 1 says use column 2 from file 1 and column 1 from file 2 as the key -o 1.1 1.2 2.3 sets the output order first column and seconf column from file 1 and third column from file 2
touch combined.txt cat file1.txt >> combined.txt cat file2.txt >> combined.txt cat file3.txt >> combined.txt cat filen.txt >> combined.txt ">>" means attach to file aka. concatenate. not sure if it is what you need, maybe just create a parser, which does the same.