mirror of
https://github.com/vbatts/go-mtree.git
synced 2025-07-05 23:28:30 +00:00
*: begin incorporating the "validate" subcommand
Update the README to show the validate subcommand by default. This doesn't eliminate the default behavior of _not_ using the command, but begins the visibility of using it by default. Also copy one of the existing tests, to ensure the same behaviour works as we add more subcommands and/or global flags. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
48e5e86700
commit
e19072ac1c
3 changed files with 50 additions and 5 deletions
10
README.md
10
README.md
|
@ -104,31 +104,31 @@ To use the command line tool, first [build it](#Building), then the following.
|
|||
This will also include the sha512 digest of the files.
|
||||
|
||||
```shell
|
||||
gomtree -c -K sha512digest -p . > /tmp/root.mtree
|
||||
gomtree validate -c -K sha512digest -p . > /tmp/root.mtree
|
||||
```
|
||||
|
||||
With a tar file:
|
||||
|
||||
```shell
|
||||
gomtree -c -K sha512digest -T sometarfile.tar > /tmp/tar.mtree
|
||||
gomtree validate -c -K sha512digest -T sometarfile.tar > /tmp/tar.mtree
|
||||
```
|
||||
|
||||
### Validate a manifest
|
||||
|
||||
```shell
|
||||
gomtree -p . -f /tmp/root.mtree
|
||||
gomtree validate -p . -f /tmp/root.mtree
|
||||
```
|
||||
|
||||
With a tar file:
|
||||
|
||||
```shell
|
||||
gomtree -T sometarfile.tar -f /tmp/root.mtree
|
||||
gomtree validate -T sometarfile.tar -f /tmp/root.mtree
|
||||
```
|
||||
|
||||
### See the supported keywords
|
||||
|
||||
```shell
|
||||
gomtree -list-keywords
|
||||
gomtree validate -list-keywords
|
||||
Available keywords:
|
||||
uname
|
||||
sha1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue