Skip to content

Commit d40fb65

Browse files
committed
update doc
1 parent 0914182 commit d40fb65

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ that consumes many of the functionalities of the library:
1818

1919
```
2020
$ ./certmin
21-
certmin, 0.5.5. A minimalist certificate utility.
21+
certmin, 0.5.6. A minimalist certificate utility.
2222
See https://github.com/nxadm/certmin for more information.
2323
2424
Usage:
2525
certmin skim cert-location1 [cert-location2...]
2626
[--leaf|--follow] [--no-roots]
27-
[--sort|--rsort] [--keep] [--no-colour]
27+
[--sort|--rsort] [--once] [--keep] [--no-colour]
2828
certmin verify-chain cert-location [cert-location2...]
2929
[--root=ca-file1 --root=ca-file2...]
3030
[--inter=inter-file1 --inter=inter-file2...]
@@ -55,6 +55,10 @@ Global options (optional):
5555
--inter | -i : intermediate certificate file(s).
5656
--sort | -s : sort the certificates and chains from leaf to root.
5757
--rsort | -z : sort the certificates and chains from root to leaf.
58+
--once | -o : if within a location several certificates share an
59+
intermediate/root, don't show certificates more than
60+
once to visually complete the chain. If "rsort" not
61+
given it enables "sort".
5862
--keep | -k : write the requested certificates and chains to files
5963
as PKCS1 PEM files (converting if necessary).
6064
--no-colour | -c : don't colourise the output.

cmd/certmin/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ go get github.com/nxadm/certmin/cmd/certmin
3030

3131
```
3232
$ ./certmin
33-
certmin, 0.5.5. A minimalist certificate utility.
33+
certmin, 0.5.6. A minimalist certificate utility.
3434
See https://github.com/nxadm/certmin for more information.
3535
3636
Usage:

cmd/certmin/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
const (
12-
version = "0.5.5"
12+
version = "0.5.6"
1313
website = "https://github.com/nxadm/certmin"
1414
timeOut = 5 * time.Second
1515
)

0 commit comments

Comments
 (0)