Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 485 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 485 Bytes

Rust shell

Rust

Description

This is a console written in Rust. It can execute simple commands, redirect input and output streams, execute a pipeline


Getting started

$ cargo build -r
$ cd target/release
$ ./rust_shell

Examples:

$ ls -la
$ cat file.txt > 1.txt
$ echo hello | tail -n 10 | wc -c

Tests

$ cargo test