Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 728 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 728 Bytes

sh-rs

psh demo

This is a simple "shell" made live on stream with the community. The replay is available here

Usage

Make sure you have cargo installed, clone the repository then:

cargo run 

You have a prompt with the current directory, you can run command and see the output, and that's about it.

Ideas for extension

Add Shell Built-ins

The essentials cd, exit and help. If you want more inspiration looks for builtin in man bash

Support for Piping and redirecting

That might require rewriting the basic principle of the shell.