mmv 0.1.0

lib to mass move files with template names
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]

//! # Mass move
//! `mass move` or `mmv` is a collection of utilities to help moving, 
//! parsing and making file path with template names.
pub mod finder;
pub mod args;
pub mod error_handler;
pub mod matcher;
pub mod input_parser;
mod output_pattern;
mod matches;