Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
more work on md
  • Loading branch information
Kampouse authored Feb 4, 2022
1 parent 9dc2188 commit 4a2279d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,24 @@

--------------------------------------------------------

parsing: "creates tokens from the base string tha come from readline"
- parsing: "creates tokens from the base string tha come from readline"
then if an error occcure a this stage it will prompt an error and display the display it to screens
the tokens are place in a doubly linklist "(yes its not a tree)"
each token in a the list will be typed "its a number" according to previous assumpitons

jobs: a doubly linklist that is create from the previous list;
- jobs: a doubly linklist that is create from the previous list;
each jobs as fews composents: such as the arguments for a command if there is a commands
if there redirecton ther will be an list:(a doubly link list)
if there a error somewhere everything before will be deleted

evalution: each string passed down the pipeline will be converted
- evalution: each string passed down the pipeline will be converted
to what it should be element prefixed with with a $ in and out of a
string will be 'expanded' otherwise the value with the $ before stay the same without the '
the 'quoting can be nested the first seen do the behavior'
the evalution part of the program is self standing and can be use in any
other project with minimal change

execution: at this stage the program will try to do rediction < > >> but not << since its
- execution: at this stage the program will try to do rediction < > >> but not << since its
done 'in evalution part' any errror will bail an early exit and not execute anything
last part is trying to see if the arguments is an executable or otherwise
EVERYTHING tha is not readline in a subprocess will be deleted in an errors or not
Expand Down

0 comments on commit 4a2279d

Please sign in to comment.