williamroocha / minishell

0 stars 0 forks source link

< file cmd1 | cmd2 - Parse AST build #19

Closed JOAOVIEG closed 8 months ago

JOAOVIEG commented 8 months ago

To build AST as follows

image

To fix highlighted bug

williamroocha commented 8 months ago

Now the code work properly, examples:

minishell>< Makefile wc -l
58
minishell>wc < Makefile -l
58
minishell>wc -l < Makefile 
58
minishell>