replaxe 0.1.1

A command-line tool to replace text in files with easy patterns
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use clap::Parser;

mod input;
mod job;
mod r#match;

fn main() -> Result<()> {
    job::Job::parse().execute()
}