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 ### 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>