coretilus 0.7.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
use coretilus::command::CommandV2;
use coretilus::commands::ehco::cli_v2::Ehco;

fn main() {
    coretilus::windows_timer::boost_timer_resolution();
    let mut ehco = Ehco {};
    ehco.run();
}