diff --git a/pages/linux/secret-tool.md b/pages/linux/secret-tool.md new file mode 100644 index 0000000000000..2eca7f0bfa6f3 --- /dev/null +++ b/pages/linux/secret-tool.md @@ -0,0 +1,21 @@ +# secret-tool + +> Store and retrieve passwords, part of the `libsecret` package. +> Communicates with Freedesktop secret service implementations such as `gnome-keyring`. +> More information: . + +- Store a secret with an optional label: + +`secret-tool store --label={{label}} {{key}} {{value}}` + +- Retrieve a secret: + +`secret-tool lookup key {{key}}` + +- Get more information about a secret: + +`secret-tool search key {{key}}` + +- Delete a stored secret: + +`secret-tool clear key {{key}}`