crab-clean 0.1.1

A CLI tool to tidy your file system by finding and managing duplicate and unused files
Documentation
1
2
3
4
5
6
7
8
9
10
use crab_clean::cli::app::start_cli;

fn main() {
    // Start the command line tool here
    if let Err(e) = start_cli() {
        eprintln!("ERROR : {e}");
        std::process::exit(1);
    }
    println!("Crab Clean CLI finished successfully!!");
}