Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 801 Bytes

File metadata and controls

16 lines (13 loc) · 801 Bytes

Project Description

  • A very simple program that follows the principle of a simple shell, it reads stdin, parses the command, and executes with execvp.
  • Before it executes, it forks the process.
  • You can install it by cloning this project and simply typing make to console.

TODO

  • Adding cd as a built-in command
  • Interpreter sign doesn't work, fix that
  • In the main file, the function usage is wonky, find a better way around that
  • Need to find a better way to implement built-in commands
  • ctrl+d (EOF) doesn't work, because we dont use while(getline >0), I have to find a better implementation
  • If I can find a way, I want to add pipes
  • Provide more comments to easily explain the program
  • Adding redirection, although it's way easier than pipes