commit 872ffe3b092b68dd895b711998adedcb825f6892 parent b239eb4efa41a1c7caa4f78b89f818c89f9c1e49 Author: Sean Enck <sean@ttypty.com> Date: Fri, 26 Nov 2021 20:53:34 -0500 Stat references are gone too Diffstat:
| M | README.md | | | 7 | ------- |
| M | cmd/lb-bash/completions.bash | | | 4 | ++-- |
2 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md @@ -82,13 +82,6 @@ The token can be automatically copied to the clipboard too lb totp -c token ``` -### stats - -View password stats/information about changes -``` -lb stats some/key/to/stat -``` - ### pwgen Generate passwords diff --git a/cmd/lb-bash/completions.bash b/cmd/lb-bash/completions.bash @@ -4,7 +4,7 @@ _lb() { local cur opts cur=${COMP_WORDS[COMP_CWORD]} if [ "$COMP_CWORD" -eq 1 ]; then - opts="version ls clip show -c insert rm rekey totp list pwgen stats find" + opts="version ls clip show -c insert rm rekey totp list pwgen find" # shellcheck disable=SC2207 COMPREPLY=( $(compgen -W "$opts" -- "$cur") ) else @@ -19,7 +19,7 @@ _lb() { "pwgen") opts="-length -transform -special" ;; - "-c" | "show" | "rm" | "clip" | "stats") + "-c" | "show" | "rm" | "clip") opts=$(lb ls) ;; esac