File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,19 @@ use std::sync::Arc;
2121use std:: time:: Instant ;
2222
2323#[ derive( Parser ) ]
24- #[ command( name = "diskcopilot-cli" , about = "Fast Mac disk scanner and query tool" ) ]
24+ #[ command(
25+ name = "diskcopilot-cli" ,
26+ about = "Fast Mac disk scanner and query tool" ,
27+ after_help = "\x1b [1mExamples:\x1b [0m
28+ diskcopilot-cli scan ~ Scan home directory
29+ diskcopilot-cli scan ~ --full Scan all files (no size threshold)
30+ diskcopilot-cli query tree ~ --depth 2 Directory size tree
31+ diskcopilot-cli query large-files ~ --json Largest files as JSON
32+ diskcopilot-cli query dev-artifacts ~ Find node_modules, target, etc.
33+ diskcopilot-cli query sql \" SELECT ...\" ~ Raw SQL query
34+ diskcopilot-cli serve ~ Open cleanup dashboard in browser
35+ diskcopilot-cli delete ~/old-file.zip --trash Move to Trash"
36+ ) ]
2537struct Cli {
2638 #[ command( subcommand) ]
2739 command : Commands ,
You can’t perform that action at this time.
0 commit comments