rouch 0.1.0

Fast `touch` rewrite in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::process;
use clap::Parser;
use rouch::*;

fn main() {
    let args = Arguments::parse();

    if let Err(e) = run(args) {
        eprintln!("Error: {e}");
        process::exit(1);
    };
}