jmacd / xdelta

open-source binary diff, delta/differential compression tools, VCDIFF/RFC 3284 delta compression
http://xdelta.org
1.09k stars 181 forks source link

Having problems decompressing! #226

Closed Kobi-Blade closed 6 years ago

Kobi-Blade commented 7 years ago

Everytime I try to decompress a file as stated in the documentation, xdelta tells me it can't find the file!

The system cannot find the file specified.

This is the commands the documents give me,

xdelta3 -d -s SOURCE OUT > TARGET xdelta3 -d -s SOURCE OUT TARGET xdelta3 -d -s SOURCE < OUT > TARGET

The only way I got the patching to work was with this command

xdelta3 -d -s SOURCE TARGET

Problem is it defaults the output file to "(stdin)"!

--

And it worked the moment I used this command,

xdelta3 -d -s SOURCE TARGET OUT

Using this two didn't work though,

xdelta3 -d -s SOURCE TARGET > OUT xdelta3 -d -s SOURCE < TARGET > OUT

Meaning the documentation seems to be wrong.