repos/msh

simple shell implementation
Commits Files Refs README LICENSE
README.md (15 lines)

msh: minimal shell

Initial implementation based on: write a shell in C

Quick start

$ make -j $(nproc)
$ ./msh

License

MIT

   1 # msh: minimal shell
   2 
   3 Initial implementation based on: [write a shell in
   4 C](https://brennan.io/2015/01/16/write-a-shell-in-c/)
   5 
   6 ## Quick start
   7 
   8 ```shell
   9 $ make -j $(nproc)
  10 $ ./msh
  11 ```
  12 
  13 ## License
  14 
  15 [MIT](https://opensource.org/licenses/MIT)