Warning, /utilities/basket/devtools/weaver/Readme.md is written in an unsupported language. File is not indexed.

0001 # BasKetWeaver
0002 
0003 The basketweaver is a tool dedicated for developers. It is used to create or 
0004 extract baskets archive files.
0005 
0006 # How to use
0007 
0008 ## Print Help
0009 A list of the command line options can be printed via the `-h`/`--help` 
0010 option.
0011 ```
0012 basketweaver --help
0013 ```
0014 
0015 
0016 ## Decode a basket archive
0017 
0018 In order to decode a `.baskets` file, use the `--unweave`/`-u` option:
0019 
0020 ```
0021 basketweaver --unweave welcome/Welcome_en_US.baskets --output welcome/ --name extracted
0022 ```
0023 This command will extract the archive to `./welcome/extracted`.
0024 
0025 ## Encode a basket directory
0026 
0027 A valid baskets directory structure can be encoded with the `--weave`/`-w` 
0028 option.
0029 
0030 ```
0031 basketweaver --weave mybasket-source --name mybasketArchive
0032 ```
0033 
0034 You'll find the `mybasketArchive.baskets` in the parent directory of `mybasket-source`.
0035 
0036 
0037