jmacd / xdelta

open-source binary diff, delta/differential compression tools, VCDIFF/RFC 3284 delta compression

Home Page:http://xdelta.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Having problems decompressing!

Kobi-Blade opened this issue · comments

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.