coretilus 0.5.0

A parody of GNU Coreutils — a playful collection of typo-triggered command-line tools written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::cell::RefCell;
use std::rc::Rc;

use coretilus::command::CommandV2;
use coretilus::commands::mr::cli_v2::Mr;

fn main() {
    let mut mr = Mr {
        landed: Rc::new(RefCell::new(false)),
        retry: Rc::new(RefCell::new(false)),
    };
    mr.run();
}