From 78f7752964c9b99d4c675df7de275a0ede869cc7 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 1 Oct 2020 19:29:13 +0100 Subject: [PATCH] yaa: add page (#4385) --- pages/osx/yaa.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/osx/yaa.md diff --git a/pages/osx/yaa.md b/pages/osx/yaa.md new file mode 100644 index 0000000000..f7333ee2d3 --- /dev/null +++ b/pages/osx/yaa.md @@ -0,0 +1,27 @@ +# yaa + +> Create and manipulate YAA archives. + +- Create an archive from a directory: + +`yaa archive -d {{path/to/directory}} -o {{path/to/output.yaa}}` + +- Create an archive from a file: + +`yaa archive -i {{path/to/file}} -o {{path/to/output.yaa}}` + +- Extract an archive to the current directory: + +`yaa extract -i {{path/to/archive.yaa}}` + +- List the contents of an archive: + +`yaa list -i {{path/to/archive.yaa}}` + +- Create an archive with a specific compression algorithm: + +`yaa archive -a {{algorithm}} -d {{path/to/directory}} -o {{path/to/output.yaa}}` + +- Create an archive with an 8MB block size: + +`yaa archive -b {{8m}} -d {{path/to/directory}} -o {{path/to/output.yaa}}`