tblcompare

Crates.iotblcompare
lib.rstblcompare
version0.1.1
sourcesrc
created_at2023-03-22 05:33:48.700306
updated_at2023-03-22 05:47:36.271185
descriptionA tabular data comparison utility
homepagehttps://github.com/arpankapoor/tblcompare
repositoryhttps://github.com/arpankapoor/tblcompare
max_upload_size
id816734
size58,033
Arpan Kapoor (arpankapoor)

documentation

README

tblcompare

Crates.io

a fast tabular file comparison utility.

features:

  • strings are interned to save on the common strings in input files.
  • input files are converted to columnar mmaped files on disk.
  • output in minimal HTML format with no javascript (sample)

install

usage

$ tblcompare \
    --left-file /path/to/leftFile.csv \
    --right-file /path/to/rightFile.csv \
    --key-cols keyCol1 keyCol2 keyCol3 \  # list of columns to identify each row
    --out-file /path/to/diff.html         # diff is output as an HTML file
Commit count: 13

cargo fmt