fleshed out missing help system data

This commit is contained in:
Nicholas O'Connor
2017-03-25 09:31:29 -07:00
parent 3dc004d27a
commit 26dc361eec
11 changed files with 40 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
cellar activate <bottle>
Marks a given WINE bottle as "active". <bottle> can be one of the following:
- An absolute path, or a relative path (prefixed with "./")
- A simple string, which is assumed to be a suffix for a cellar-managed WINE
bottle. For instance, "cellar activate example" would set the active WINE
bottle to "~/.wine.example".
- As above, with the ".wine." prefix. cellar will accept this, but will throw
warnings about it.

3
src/bottles/help/active Normal file
View File

@@ -0,0 +1,3 @@
cellar active
Prints the name of the active WINE bottle, as specified in cellar.json.

5
src/bottles/help/config Normal file
View File

@@ -0,0 +1,5 @@
cellar config get <key>
cellar config set <key> <value>
The first command prints the contents of <key> from cellar.json in the active
WINE bottle. The second command sets <key> in the same file to <value>.

4
src/bottles/help/list Normal file
View File

@@ -0,0 +1,4 @@
cellar list
Prints a list of all cellar managable WINE bottles in your home directory, and
some basic information about them.