taandreo / minishell

Minihell from 42. Everything is gonna be fine.
2 stars 1 forks source link

Parser Bonus (&& and ||) #9

Closed taandreo closed 1 year ago

taandreo commented 1 year ago

Bonus part

edu-bm7 commented 1 year ago

Need to make a new token for parenthesis() so the parser know when to prioritize && and || instead of pipelines |.

edu-bm7 commented 1 year ago

The part of tokenization of both AND, OR and () are done. Now its all about the parser

edu-bm7 commented 1 year ago

The parser is correctly handling ()&&||