Projects STRLCPY deduplicator Commits f9b6d579
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    src/params.rs
    skipped 16 lines
    17 17   #[arg(long, short)]
    18 18   pub interactive: bool,
    19 19   /// Minimum filesize of duplicates to scan (e.g., 100B/1K/2M/3G/4T).
    20  - #[arg(long, default_value = "1b")]
     20 + #[arg(long, short = 's', default_value = "1b")]
    21 21   pub min_size: Option<String>,
    22 22   /// Max Depth to scan while looking for duplicates
    23 23   #[arg(long, short = 'd')]
    skipped 2 lines
    26 26   #[arg(long)]
    27 27   pub min_depth: Option<usize>,
    28 28   /// Follow links while scanning directories
    29  - #[arg(long)]
     29 + #[arg(long, short)]
    30 30   pub follow_links: bool,
    31 31  }
    32 32   
    skipped 57 lines
Please wait...
Page is in error, reload to recover