Sometimes data comes split into several files. It might be a table from a database exported to several csv files. You could use the cat tool in linux to combine the files:
1 |
cat table_file1 table_file2 table_file3 > full_table |
Sometimes data comes split into several files. It might be a table from a database exported to several csv files. You could use the cat tool in linux to combine the files:
1 |
cat table_file1 table_file2 table_file3 > full_table |
Sometimes data comes split into several files. It might be a table from a database exported to several csv files. You could use the cat tool in linux to combine the files:
1 |
cat table_file1 table_file2 table_file3 > full_table |