csv-merger
is a command line tool written in Rust for merging multiple CSV files into one. It uses the csv
crate for reading and writing CSV files.
csv-merger file1.csv file2.csv file3.csv > merged.csv
This command will merge file1.csv
, file2.csv
, and file3.csv
into a single CSV file named merged.csv
.
You can install csv-merger
using Cargo:
cargo install csv-merger
This software is licensed under the MIT license. See the LICENSE
file for details.