mirror of
https://github.com/bootandy/dust.git
synced 2026-01-18 15:47:42 -08:00
du has -L flag which allows it to dereference or follow symlinks. Clone this feature into dust. https://github.com/bootandy/dust/issues/276
148 lines
4.9 KiB
Rust
148 lines
4.9 KiB
Rust
use clap::{Arg, Command};
|
|
|
|
pub fn build_cli() -> Command<'static> {
|
|
Command::new("Dust")
|
|
.about("Like du but more intuitive")
|
|
.version(env!("CARGO_PKG_VERSION"))
|
|
.trailing_var_arg(true)
|
|
.arg(
|
|
Arg::new("depth")
|
|
.short('d')
|
|
.long("depth")
|
|
.help("Depth to show")
|
|
.takes_value(true)
|
|
)
|
|
.arg(
|
|
Arg::new("number_of_lines")
|
|
.short('n')
|
|
.long("number-of-lines")
|
|
.help("Number of lines of output to show. (Default is terminal_height - 10)")
|
|
.takes_value(true)
|
|
)
|
|
.arg(
|
|
Arg::new("display_full_paths")
|
|
.short('p')
|
|
.long("full-paths")
|
|
.help("Subdirectories will not have their path shortened"),
|
|
)
|
|
.arg(
|
|
Arg::new("ignore_directory")
|
|
.short('X')
|
|
.long("ignore-directory")
|
|
.takes_value(true)
|
|
.number_of_values(1)
|
|
.multiple_occurrences(true)
|
|
.help("Exclude any file or directory with this name"),
|
|
)
|
|
.arg(
|
|
Arg::new("dereference_links")
|
|
.short('L')
|
|
.long("dereference-links")
|
|
.help("dereference sym links - Treat sym links as directories and go into them"),
|
|
)
|
|
.arg(
|
|
Arg::new("limit_filesystem")
|
|
.short('x')
|
|
.long("limit-filesystem")
|
|
.help("Only count the files and directories on the same filesystem as the supplied directory"),
|
|
)
|
|
.arg(
|
|
Arg::new("display_apparent_size")
|
|
.short('s')
|
|
.long("apparent-size")
|
|
.help("Use file length instead of blocks"),
|
|
)
|
|
.arg(
|
|
Arg::new("reverse")
|
|
.short('r')
|
|
.long("reverse")
|
|
.help("Print tree upside down (biggest highest)"),
|
|
)
|
|
.arg(
|
|
Arg::new("no_colors")
|
|
.short('c')
|
|
.long("no-colors")
|
|
.help("No colors will be printed (Useful for commands like: watch)"),
|
|
)
|
|
.arg(
|
|
Arg::new("no_bars")
|
|
.short('b')
|
|
.long("no-percent-bars")
|
|
.help("No percent bars or percentages will be displayed"),
|
|
)
|
|
.arg(
|
|
Arg::new("min_size")
|
|
.short('z')
|
|
.long("min-size")
|
|
.takes_value(true)
|
|
.number_of_values(1)
|
|
.help("Minimum size file to include in output"),
|
|
)
|
|
.arg(
|
|
Arg::new("skip_total")
|
|
.long("skip-total")
|
|
.help("No total row will be displayed"),
|
|
)
|
|
.arg(
|
|
Arg::new("by_filecount")
|
|
.short('f')
|
|
.long("filecount")
|
|
.help("Directory 'size' is number of child files/dirs not disk size"),
|
|
)
|
|
.arg(
|
|
Arg::new("ignore_hidden")
|
|
.short('i') // Do not use 'h' this is used by 'help'
|
|
.long("ignore_hidden")
|
|
.help("Do not display hidden files"),
|
|
)
|
|
.arg(
|
|
Arg::new("invert_filter")
|
|
.short('v')
|
|
.long("invert-filter")
|
|
.takes_value(true)
|
|
.number_of_values(1)
|
|
.multiple_occurrences(true)
|
|
.conflicts_with("filter")
|
|
.conflicts_with("types")
|
|
.help("Exclude filepaths matching this regex. To ignore png files type: -v \"\\.png$\" "),
|
|
)
|
|
.arg(
|
|
Arg::new("filter")
|
|
.short('e')
|
|
.long("filter")
|
|
.takes_value(true)
|
|
.number_of_values(1)
|
|
.multiple_occurrences(true)
|
|
.conflicts_with("types")
|
|
.help("Only include filepaths matching this regex. For png files type: -e \"\\.png$\" "),
|
|
)
|
|
.arg(
|
|
Arg::new("types")
|
|
.short('t')
|
|
.long("file_types")
|
|
.conflicts_with("depth")
|
|
.help("show only these file types"),
|
|
)
|
|
.arg(
|
|
Arg::new("width")
|
|
.short('w')
|
|
.long("terminal_width")
|
|
.takes_value(true)
|
|
.number_of_values(1)
|
|
.help("Specify width of output overriding the auto detection of terminal width"),
|
|
)
|
|
.arg(
|
|
Arg::new("iso")
|
|
.short('H')
|
|
.long("si")
|
|
.help("print sizes in powers of 1000 (e.g., 1.1G)")
|
|
)
|
|
.arg(Arg::new("inputs").multiple_occurrences(true))
|
|
.arg(
|
|
Arg::new("only_dir")
|
|
.short('D')
|
|
.long("only-dir")
|
|
.help("Only directories will be displayed."),
|
|
)
|
|
}
|