qesp 0.2.4

Tool to remove annoying characters of names in a directory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use qesp::Config;
use std::process;
use structopt::StructOpt;

fn main() {
    let config = Config::from_args();
    if let Err(e) = qesp::run(config) {
        eprintln!("Application error: {}", e);

        process::exit(1);
    }
}