rew 0.3.0

A text processing CLI tool that rewrites FS paths according to a pattern.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use cli::Cli;
use common::run::{exec_run, Io, Result};
use common::transfer::{run_transfer, TransferMode};

mod cli;

fn main() {
    exec_run(run);
}

fn run(cli: &Cli, io: &Io) -> Result {
    run_transfer(cli, io, TransferMode::Move)
}