DavidGinzberg / MyShell

A simple command line shell written as a learning exercise.
0 stars 1 forks source link

Extract enhancements from comments #1

Open DavidGinzberg opened 9 years ago

DavidGinzberg commented 9 years ago

There are some future improvements described in the comments in the source. These should be extracted from the comments and turned into issues on GitHub.

DavidGinzberg commented 9 years ago
//need to add tab completion
// and per-session aliasing
// as well as ^L (FF / 0xC?) functionality (alias to clr)
//want to add colored prompt text

Fork/exec statements start with the following lines:

     /*fork/exec statement--case 0 is the child process, default is the parent, -1 is an error*/
    switch(childPID = fork()){
        case -1:
DavidGinzberg commented 9 years ago

Once each issue has been created, remove any comments related to it which do not add value to the understanding of the code.