Elektra
0.8.25
|
kdb cp <source> <dest>
This command copies key(s) in the Key database. You can copy keys to another directory within the database or even below another key. Note that you cannot copy a key below itself.
Where source
is the path of the key(s) you want to copy and dest
is the path where you would like to copy the key(s) to. Note that when using the -r
flag, source
as well as all of the keys below it will be copied.
Neither source
nor dest
can be a cascading key. (Start with /
). Make sure to select a namespace.
This command will return the following values as an exit status:
-H
, --help
: Show the man page.-V
, --version
: Print version info.-p
, --profile <profile>
: Use a different kdb profile.-C
, --color <when>
: Print never/auto(default)/always colored output.-r
, --recursive
: Recursively copy keys.-v
, --verbose
: Explain what is happening.-f
, --force
: Force overwriting the keys.To copy multiple keys:
kdb cp -r user/example1 user/example2
To copy a single key:
kdb cp user/example/key1 user/example/key2
To copy keys below an existing key:
kdb cp -r user/example user/example/key1
Note that in this example, all keys in the example directory will be copied below key1
except key1
.