1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 23:24:55 +02:00
tldr/pages/common/pass.md
2019-05-31 19:47:40 +01:00

29 lines
732 B
Markdown

# pass
> Safely store and read passwords or other sensitive data easily.
> All data is GPG-encrypted, and managed with a git repository.
> More information: <https://www.passwordstore.org>.
- Initialize the storage using a gpg-id for encryption:
`pass init {{gpg_id}}`
- Save a new password (prompts you for the value without echoing it):
`pass insert {{path/to/data}}`
- Copy a password (first line of the data file) to the clipboard:
`pass -c {{path/to/data}}`
- List the whole store tree:
`pass`
- Generate a new random password with a given length, and copy it to the clipboard:
`pass generate -c {{path/to/data}} {{num}}`
- Run any git command against the underlying store repository:
`pass git {{git_arguments}}`