mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-10 22:35:40 +02:00
zsync: add page (#16731)
* Create zsync.md * Update zsync.md Clarifying structures * Update zsync.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update zsync.md Adding a better "more information" link * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update zsync.md Adding period for see also line. --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
parent
64fe68b9e4
commit
013d823516
1 changed files with 26 additions and 0 deletions
26
pages/linux/zsync.md
Normal file
26
pages/linux/zsync.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
# zsync
|
||||
|
||||
> Partial/differential file downloader.
|
||||
> HTTPS is not supported - use HTTP URLs only.
|
||||
> See also: `rsync`.
|
||||
> More information: <https://manned.org/zsync>.
|
||||
|
||||
- Download a file using a `.zsync` control file:
|
||||
|
||||
`zsync {{path/to/url.zsync}}`
|
||||
|
||||
- Use a local file as a seed to avoid re-downloading unchanged parts:
|
||||
|
||||
`zsync -i {{path/to/existing_file}} {{path/to/url.zsync}}`
|
||||
|
||||
- Save the updated file under a specific name:
|
||||
|
||||
`zsync -i {{path/to/existing_file}} -o {{path/to/new_file}} {{path/to/url.zsync}}`
|
||||
|
||||
- Resume a partial download and keep the temporary file:
|
||||
|
||||
`zsync -k {{path/to/url.zsync}}`
|
||||
|
||||
- Run in quiet mode with minimal output (no progress bar, download rate, or ETA display):
|
||||
|
||||
`zsync -q {{path/to/url.zsync}}`
|
Loading…
Add table
Reference in a new issue