dir_cleaner 0.1.0

A simple command line utility that will allow you to identify duplicated files and delete them if necessary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::env;
use std::process;

fn main() {
    let args = env::args();

    dir_cleaner::run(args).unwrap_or_else(|err| {
        eprintln!("{}", err);
        process::exit(1);
    });
}