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