diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-09-28 16:45:47 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-09-28 16:49:39 +0200 |
commit | 3592e5b055ad0fcd70d1ae9e4804a4b5c6a77c5d (patch) | |
tree | 18700c6bca9a3815fbc588cab18f3afd8362673d /README.md | |
parent | 1f9282020f19a3e9826d976e639cf9f9700db331 (diff) |
add list, show commands
The `list` command can be omitted and is the default. The `show` command
retains past output.
```console
$ anissue -h
Usage:
anissue
anissue list
anissue show
```
The implementation uses docopts, the shell variant of docopt [1].
Because of that, wrapping with `--argv0 ''` is necessary when packaging.
[1] http://docopt.org/
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -6,6 +6,14 @@ nix-env -f. -i ## usage +### list + +```console +anissue list +``` + +### show + ```console -anissue . +anissue show ``` |