passage: add page (#23008)

This commit is contained in:
Eva
2026-07-08 19:58:47 -04:00
committed by GitHub
parent fb9b106cde
commit 367754356b
+38
View File
@@ -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}}`