1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/xdelta.md
spageektti 700b2dc358
pages*/common/*: fix broken links (#12826)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-05-23 18:13:29 +02:00

13 lines
361 B
Markdown

# xdelta
> Delta encoding utility.
> Often used for applying patches to binary files.
> More information: <https://github.com/jmacd/xdelta>.
- 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}}`