lprs/docs/commands/remove.md
Awiteb f9d36a2dd7
All checks were successful
Write changelog / write-changelog (push) Successful in 3s
Rust CI / Rust CI (push) Successful in 1m59s
feat: Lprs docs (#49)
Reviewed-on: #49
Co-authored-by: Awiteb <a@4rs.nl>
Co-committed-by: Awiteb <a@4rs.nl>
2024-05-17 01:29:37 +03:00

1 KiB

Removing a vault

Usage

Usage: lprs remove [OPTIONS] <INDEX-or-NAME>

Arguments:
  <INDEX-or-NAME>  The vault to remove, index or name

Options:
  -f, --force    Force remove, will not return error if there is no vault with the given index or name
  -h, --help     Print help
  -V, --version  Print version

To remove a vault you need to provide the index or the name of the vault. If you provide the index, the vault will be removed by its index, if you provide the name, the vault will be removed the first vault with the given name.

If there is no vault with the given index or name, an error will be returned, unless you provide the --force option, in which case the command will not return an error if there is no vault with the given index or name.

Examples

Remove a vault by its index:

lprs remove 1

Remove a vault by its name:

lprs remove my-vault

Force remove a vault by its index:

lprs remove 234 --force

Notes

  • The index is one-based (the first vault is 1).