From 444b2ef58cf425c34ee9f6845c09fe38d8e3ba1e Mon Sep 17 00:00:00 2001 From: dgcampea <59268455+dgcampea@users.noreply.github.com> Date: Mon, 9 Aug 2021 22:52:46 +0100 Subject: [PATCH] xdelta: add page (#6313) --- pages/common/xdelta.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pages/common/xdelta.md diff --git a/pages/common/xdelta.md b/pages/common/xdelta.md new file mode 100644 index 0000000000..067cadc5a0 --- /dev/null +++ b/pages/common/xdelta.md @@ -0,0 +1,13 @@ +# xdelta + +> Delta encoding utility. +> Often used for applying patches to binary files. +> More information: . + +- Apply a patch: + +`xdelta -d -s {{path/to/input_file}} {{path/to/delta_file.xdelta}} {{path/to/output_file}}` + +- Create a patch: + +`xdelta -e -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/output_file.xdelta}}`