File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Usage: pass file action pass-name [path]
7
7
Actions:
8
8
store|add|attach: add new file to password store
9
9
retrieve|show|cat: retrieve file from password store and print it to stdout
10
+ edit|vi: edit a file (warning: unencrypted file will be opened with $EDITOR)
10
11
```
11
12
12
13
## Examples
@@ -20,5 +21,9 @@ Alternativley you can also use shortcuts for `attach` and `retrieve`:
20
21
pass file add article my_super_secret_revelations.txt
21
22
pass file cat article
22
23
```
24
+ Use ` edit ` to edit a file:
25
+ ```
26
+ pass file edit article
27
+ ```
23
28
## Installation
24
29
See [ here] ( https://www.passwordstore.org/#extensions ) for details. There is also information on how to install extensions in the ` pass ` man page.
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ print_usage() {
5
5
echo " Actions:"
6
6
echo " store|add|attach: add new file to password store"
7
7
echo " retrieve|show|cat: retrieve file from password store and print it to stdout"
8
+ echo " edit|vi: edit a file (warning: unencrypted file will be opened with \$ EDITOR)"
8
9
exit 0
9
10
}
10
11
You can’t perform that action at this time.
0 commit comments