diff --git a/README.md b/README.md index 5fecea3..7f06779 100644 --- a/README.md +++ b/README.md @@ -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] ... diff --git a/src/main.rs b/src/main.rs index 03e5603..765ce51 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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")