0.0
No commit activity in last 3 years
No release in over 3 years
The hashed-diff ruby script is a reasonably fast, memory efficient script that wraps diff for very large files (4Gb).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.3.0
 Project Readme

hashed-diff

A memory efficient diff script for large files, implemented with xxHash.

The hashed-diff ruby script is a reasonably fast, memory efficient script that wraps diff for very large files (4Gb).

The script uses the very fast xxhash to create temporary files with hashes for each individual line. Then it applies diff to these hashed files. Finally the script transforms the diff output to include the original lines.

Install:

gem install hashed-diff

Usage:

hashed-diff file1 file2