mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
passage: add page (#23008)
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
# passage
|
||||
|
||||
> Store and read passwords or other sensitive data.
|
||||
> Note: All data is age-encrypted (as opposed to GPG used by `pass`).
|
||||
> See also: `pass`.
|
||||
> More information: <https://github.com/FiloSottile/passage>.
|
||||
|
||||
- Insert a new password (press `<Ctrl d>` on a new line to complete):
|
||||
|
||||
`passage insert {{[-m|--multiline]}} {{path/to/data}}`
|
||||
|
||||
- Insert a new password from `stdin`:
|
||||
|
||||
`echo "{{password}}" | passage insert {{[-e|--echo]}} {{path/to/data}}`
|
||||
|
||||
- Show a password:
|
||||
|
||||
`passage {{path/to/data}}`
|
||||
|
||||
- Copy a password to the clipboard:
|
||||
|
||||
`passage {{[-c|--clip]}} {{path/to/data}}`
|
||||
|
||||
- List the whole store tree:
|
||||
|
||||
`passage ls`
|
||||
|
||||
- Generate a new random password of a given length:
|
||||
|
||||
`passage generate {{path/to/data}} {{length}}`
|
||||
|
||||
- Edit an entry:
|
||||
|
||||
`passage edit {{path/to/data}}`
|
||||
|
||||
- Remove an entry:
|
||||
|
||||
`passage rm {{path/to/data}}`
|
||||
Reference in New Issue
Block a user