Update pass.md (#1662)

* Update pass.md

Add `bash` to the code block

* Update pass.md

Co-authored-by: Rico Sta. Cruz <rstacruz@users.noreply.github.com>
This commit is contained in:
Igor Grinchesku 2021-06-20 16:04:30 +03:00 committed by GitHub
parent f7d4f61acf
commit b3c91e197a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

16
pass.md
View File

@ -9,7 +9,7 @@ Reference
### Create
``` bash
```sh
$ pass init [-p] <gpg-id>
$ pass git init
$ pass git remote add origin <your.git:repository>
@ -18,14 +18,14 @@ $ pass git push -u --all
### Store
``` bash
```sh
$ pass insert [-m] twitter.com/rsc
$ pass generate [-n] twitter.com/rsc length
```
### Retrieve
``` bash
```sh
$ pass ls twitter.com/
$ pass show twitter.com/rsc
$ pass -c twitter.com/rsc
@ -33,29 +33,29 @@ $ pass -c twitter.com/rsc
### Search
``` bash
```sh
$ pass find twitter.com
```
### Management
``` bash
```sh
$ pass mv twitter.com twitter.com/rsc
$ pass rm [-rf] twitter.com
$ pass cp twitter.com/rsc twitter.com/ricosc
```
``` bash
```sh
$ pass edit twitter.com/rsc
```
### Synchronize
```
```sh
$ pass git push
$ pass git pull
```
## References
* <http://passwordstore.org>
* <https://passwordstore.org>