Update README
This commit is contained in:
parent
3599e9d81c
commit
c1da9962fe
1 changed files with 11 additions and 9 deletions
20
README.md
20
README.md
|
@ -11,8 +11,8 @@ You can install it directly from PyPI with pip:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ pass2csv --help
|
$ pass2csv --help
|
||||||
usage: pass2csv [-h] [-b path] [-g executable] [-a] [--encoding encoding] [-o file]
|
usage: pass2csv [-h] [-b path] [-g executable] [-a] [--encodings encodings]
|
||||||
[-e pattern [pattern ...]] [-f name pattern] [-l name pattern]
|
[-o file] [-e pattern] [-f name pattern] [-l name pattern]
|
||||||
store_path
|
store_path
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
|
@ -24,17 +24,19 @@ optional arguments:
|
||||||
-g executable, --gpg executable
|
-g executable, --gpg executable
|
||||||
path to the gpg binary you wish to use (default 'gpg')
|
path to the gpg binary you wish to use (default 'gpg')
|
||||||
-a, --use-agent ask gpg to use its auth agent
|
-a, --use-agent ask gpg to use its auth agent
|
||||||
--encoding encoding text encoding to use when reading gpg output (default
|
--encodings encodings
|
||||||
'utf-8')
|
comma-separated text encodings to try, in order, when
|
||||||
|
decoding gpg output (default 'utf-8')
|
||||||
-o file, --outfile file
|
-o file, --outfile file
|
||||||
file to write exported data to (default stdin)
|
file to write exported data to (default stdin)
|
||||||
-e pattern [pattern ...], --exclude pattern [pattern ...]
|
-e pattern, --exclude pattern
|
||||||
regexps for lines which should not be exported
|
regexp for lines which should not be exported, can be
|
||||||
|
specified multiple times
|
||||||
-f name pattern, --get-field name pattern
|
-f name pattern, --get-field name pattern
|
||||||
a name and a regexp, the part of the line matching the
|
a name and a regexp, the part of the line matching the
|
||||||
regexp will be removed and the remaining line will be added
|
regexp will be removed and the remaining line will be
|
||||||
to a field with the chosen name. only one match per
|
added to a field with the chosen name. only one match
|
||||||
password, matching stops after the first match
|
per password, matching stops after the first match
|
||||||
-l name pattern, --get-line name pattern
|
-l name pattern, --get-line name pattern
|
||||||
a name and a regexp for which all lines that match are
|
a name and a regexp for which all lines that match are
|
||||||
included in a field with the chosen name
|
included in a field with the chosen name
|
||||||
|
|
Loading…
Reference in a new issue