Project

dedup_csv

0.0
The project is in a healthy, maintained state
Given 2 CSV files, remove all rows from the second CSV that are present in the first CSV.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

DedupCsv

Given 2 CSV files, this gem will create a third CSV file that contains rows from the first CSV file that are not present in the second CSV file.

Installation

gem install dedup_csv

Usage

require 'dedup_csv'
DedupCsv.dedup('file1.csv', 'file2.csv', 'output.csv')

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kingsleyh/dedup_csv.