Cover image for Minishell

Minishell

08/03/2028


Project description


Minishell is a 42 project that aims to make us understand how the actual shell process command. The final goal is to have a working shell with basic functionalities.

Features


Parsing


The first part of the parsing is the tokenisation. Basically it's the division of the user input into small meaningful piece. That includes :

How it work :

  1. First we need to expand the environment variables keeping in mind the rules about single and double quote.
  2. Then the input is traversed character by character to separate meaningful component wisely, not just splitting on space but group together related pieces. (think about space in quote, missing space between command and pipe or redirection that bash handle well…)
  3. Finally we classify the token and assign type to it (REDIRECTION, HERE_DOC…)

Execution