cli: usage update

This commit is contained in:
Mr Nouse 2022-06-13 18:26:04 +02:00
parent dda2b4d529
commit 029b881f7e
2 changed files with 3 additions and 3 deletions

View file

@ -32,8 +32,8 @@ DDH supports both a `standard` output for human comprehension and a parsable `js
Directory Difference hTool
Jon Moroney jmoroney@hawaii.edu
Compare and contrast directories.
Example invocation: ddh /home/jon/downloads /home/jon/documents -f duplicates
Example pipe: ddh ~/Downloads/ -o no -v all -f json | someJsonParser.bin
Example invocation: ddh -d /home/jon/downloads /home/jon/documents -v duplicates
Example pipe: ddh -d ~/Downloads/ -o no -v all -f json | someJsonParser.bin
USAGE:
ddh [OPTIONS] <Directories>...

View file

@ -19,7 +19,7 @@ pub enum Verbosity {
All,
}
static DDH_ABOUT: &str = "Compare and contrast directories.\nExample invocation: ddh /home/jon/downloads /home/jon/documents -f duplicates\nExample pipe: ddh ~/Downloads/ -o no -v all -f json | someJsonParser.bin";
static DDH_ABOUT: &str = "Compare and contrast directories.\nExample invocation: ddh -d /home/jon/downloads /home/jon/documents -v duplicates\nExample pipe: ddh -d ~/Downloads/ -o no -v all -f json | someJsonParser.bin";
fn main() {
let arguments = App::new("Directory Difference hTool")