From 6a9e8533dca3c33e4ebcd40fee9ebd6a199a9b2b Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Wed, 6 Jan 2016 19:23:32 +0000 Subject: [PATCH] Add pass command http://www.passwordstore.org/ --- pages/common/pass.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/pass.md diff --git a/pages/common/pass.md b/pages/common/pass.md new file mode 100644 index 000000000..f12fde24f --- /dev/null +++ b/pages/common/pass.md @@ -0,0 +1,28 @@ +# pass + +> safely store and read passwords or other sensitive data easily +> all data is GPG-encrypted, and managed with a git repository + +- 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}}`