jos-felipe / minishell

This project is about creating a simple shell.
Apache License 2.0
0 stars 2 forks source link

Syntax Analysis #15

Closed gfantonib closed 6 months ago

gfantonib commented 6 months ago
  1. Break the input into words and operators, obeying the quoting rules described in "quoting". These tokens are separated by metacharacters. Alias expansion is performed by this step.

  2. Parses the tokens into simple and compound commands.

jos-felipe commented 6 months ago

syntax analisys

jos-felipe commented 6 months ago

Tests: