mirror of
https://github.com/darakian/ddh.git
synced 2026-09-10 07:06:21 -04:00
cli: usage update
This commit is contained in:
parent
dda2b4d529
commit
029b881f7e
|
|
@ -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>...
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue