@@ -49,16 +49,16 @@ pub struct Args {
4949 /// GiB - only gibibytes
5050 /// MB - only megabytes
5151 /// MiB - only mebibytes
52- #[ structopt( short = "f" , long = "format" ) ]
52+ #[ structopt( short = "f" , long) ]
5353 pub format : Option < ByteFormat > ,
5454
5555 /// Display apparent size instead of disk usage.
56- #[ structopt( short = "A" , long = "apparent-size" ) ]
56+ #[ structopt( short = "A" , long) ]
5757 pub apparent_size : bool ,
5858
5959 /// Count hard-linked files each time they are seen
60- #[ structopt( short = "l" , long = "count-links" ) ]
61- pub count_links : bool ,
60+ #[ structopt( short = "l" , long) ]
61+ pub count_hard_links : bool ,
6262
6363 /// One or more input files or directories. If unset, we will use all entries in the current working directory.
6464 #[ structopt( parse( from_os_str) ) ]
@@ -82,10 +82,10 @@ pub enum Command {
8282 statistics : bool ,
8383 /// If set, paths will be printed in their order of occurrence on the command-line.
8484 /// Otherwise they are sorted by their size in bytes, ascending.
85- #[ structopt( long = "no-sort" ) ]
85+ #[ structopt( long) ]
8686 no_sort : bool ,
8787 /// If set, no total column will be computed for multiple inputs
88- #[ structopt( long = "no-total" ) ]
88+ #[ structopt( long) ]
8989 no_total : bool ,
9090 /// One or more input files or directories. If unset, we will use all entries in the current working directory.
9191 #[ structopt( parse( from_os_str) ) ]
0 commit comments