Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 446 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 446 Bytes

mini-shell

Hobby UNIX shell implementation.

The purpose of this project is to understand the principles how UNIX shells work "under the hood".

How to run it

You can run the shell:

  • in a container:

      docker run --rm -it $(docker build -q .)
  • locally:

      make

    NOTE: you can clean up build files with make clean command

TODO

  • Piping
  • Redirection
  • Globbing
  • ...