Binary diff/patch for large files on linux?
Posted
by
thejh
on Super User
See other posts from Super User
or by thejh
Published on 2011-05-13T13:49:23Z
Indexed on
2014/06/05
9:30 UTC
Read the original article
Hit count: 138
I've got two partition images (A and B) and want to use them to create a patch that I can apply on A on another computer in order to get the new B image without flooding the network. I have the following requirements:
- works on linux
- can create diffs
- can use diffs to patch files
- can handle binary files
- can handle large files (a few hundred GB should work)
- no user interaction required (just a console application)
- ideally, should be able to read from/write to pipes (so that I can pipe into it from a gzip-compressed file and write to one)
Does something like that exist?
© Super User or respective owner