Skip to content

mareknovotny/csvcompare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSV file comparator tool

Java CI with Maven

Basic tool to compare two CSV files from Windup CSV export and outputs as CSV file with different lines from second file.

There is compare.sh script to launch the tool

$ ./compare.sh <URL1> <URL2>

or alternatively

java -jar csvcompare-0.0.1-SNAPSHOT.jar -o <URL1> -n <URL2> -d ,

where URL1 and URL2 is Uniform Resource Locator

Usage help is shown when you run it without arguments: java -jar csvcompare-0.0.1-SNAPSHOT.jar

usage: csvcompare
 -d,--csv-delimiter <delimiter in CSV file>
 -n,--new-file <URL of CSV file>
 -o,--old-file <URL of CSV file>