From 301d6255a4e7aae9ef36fcc2fb8fc7f052761bed Mon Sep 17 00:00:00 2001 From: CreeperFace <165158232+dy-tea@users.noreply.github.com> Date: Sat, 7 Dec 2024 21:10:52 +0000 Subject: [PATCH] zpaq: add page (#15024) Co-authored-by: Wiktor Perskawiec Co-authored-by: Juri Dispan --- pages/common/zpaq.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/zpaq.md diff --git a/pages/common/zpaq.md b/pages/common/zpaq.md new file mode 100644 index 000000000..b47229e66 --- /dev/null +++ b/pages/common/zpaq.md @@ -0,0 +1,28 @@ +# zpaq + +> Incremental journaling backup utility and archiver. +> More information: . + +- [a]dd a file or directory to a new or existing archive: + +`zpaq a {{path/to/archive.zpaq}} {{path/to/file_or_directory}}` + +- Create or add to an encrypted archive: + +`zpaq a -k{{password}} {{path/to/archive.zpaq}} {{path/to/file_or_directory}}` + +- E[x]tract the most recent versions of files: + +`zpaq x {{path/to/archive.zpaq}}` + +- [l]ist the archive contents: + +`zpaq l {{path/to/archive.zpaq}}` + +- Set the level of compression (higher means more compression but slower): + +`zpaq a {{path/to/archive.zpaq}} -m{{1|2|3|4|5}} {{path/to/file_or_directory}}` + +- E[x]tract the specified files from the archive that are not newer than the specified date: + +`zpaq x {{path/to/archive.zpaq}} {{path/in/archive/to/extract}} -to {{path/to/output}} -until {{YYYY-MM-DD}}`