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

14 lines
347 B
Markdown
Raw Normal View History

2021-08-09 22:52:46 +01:00
# xdelta
> Delta encoding utility.
> Often used for applying patches to binary files.
> More information: <http://xdelta.org>.
- 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}}`