relyay/macroutils
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
macroutils ========== Minimal Linux core utilities written in Rust. Avaivable utils: * true * false * echo * mkdir * cat * pwd * touch Installation ------------ git clone https://github.com/relyay/macroutils.git cd macroutils cargo build --release Usage ----- Compiled binaries will appear in target/release For example: ./target/release/echo hello world hello world Benchmark --------- /bin/echo: 3.65 ms m-echo: 1.77 ms /bin/echo: 33 KB m-echo: 354 KB Despite being larger, the Rust implementation can sometimes start faster in simple benchmarks.