mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
[CLI] Add a db-edit command (#8400)
This commit is contained in:
parent
b1e7c34b82
commit
db98f114f9
16 changed files with 529 additions and 52 deletions
|
@ -66,6 +66,11 @@ It provides the ability to query and modify the entries of a KeePass database, d
|
|||
The key file will be created if the file that is referred to does not exist.
|
||||
If both the key file and password are empty, no database will be created.
|
||||
|
||||
*db-edit* [_options_] <__database__>::
|
||||
Edits a database.
|
||||
When setting a key file, the key file will be created if the file that is referred to
|
||||
does not exist.
|
||||
|
||||
*db-info* [_options_] <__database__>::
|
||||
Show a database's information.
|
||||
|
||||
|
@ -154,7 +159,7 @@ It provides the ability to query and modify the entries of a KeePass database, d
|
|||
*--no-password*::
|
||||
Deactivates the password key for the database.
|
||||
|
||||
*-y*, *--yubikey* <__slot__>::
|
||||
*-y*, *--yubikey* <__slot[:serial]__>::
|
||||
Specifies a yubikey slot for unlocking the database.
|
||||
In a merge operation this option is used to specify the YubiKey slot for the first database.
|
||||
|
||||
|
@ -177,7 +182,7 @@ It provides the ability to query and modify the entries of a KeePass database, d
|
|||
*--no-password-from*::
|
||||
Deactivates password key for the database to merge from.
|
||||
|
||||
*--yubikey-from* <__slot__>::
|
||||
*--yubikey-from* <__slot[:serial]__>::
|
||||
YubiKey slot for the second database.
|
||||
|
||||
*-s*, *--same-credentials*::
|
||||
|
@ -235,16 +240,24 @@ The same password generation options as documented for the generate command can
|
|||
If a unique matching entry is found it will be copied to the clipboard.
|
||||
If multiple entries are found they will be listed to refine the search. (no clip performed)
|
||||
|
||||
=== Create and Import options
|
||||
*-k*, *--set-key-file* <__path__>::
|
||||
=== Db-create, Db-edit and Import options
|
||||
*--set-key-file* <__path__>::
|
||||
Set the key file for the database.
|
||||
|
||||
*-p*, *--set-password*::
|
||||
Set a password for the database.
|
||||
|
||||
=== Db-create, Import options
|
||||
*-t*, *--decryption-time* <__time__>::
|
||||
Target decryption time in MS for the database.
|
||||
|
||||
=== Db-edit options
|
||||
*--unset-password* <__path__>::
|
||||
Removes the password for the database.
|
||||
|
||||
*--unset-key-file* <__path__>::
|
||||
Removes the key file for the database.
|
||||
|
||||
=== Show options
|
||||
*-a*, *--attributes* <__attribute__>...::
|
||||
Shows the named attributes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue