faboussard / 42_minishell

1 stars 0 forks source link

Gestion de ls |ls|ls ou ls | ls|ls : ls|ls|ls fonctionne mais pas les commandes mentionnées avant. #63

Closed melobern closed 5 months ago

melobern commented 5 months ago

Minishell gère ls|ls|ls mais pas ls | ls |ls ou ls |ls|ls

MINISHELL

>>>  Minishell>$ ls | ls |ls
ls: cannot access '|ls': No such file or directory
>>>  Minishell>$ ls |ls|ls|ls
ls: cannot access '|ls': No such file or directory
ls: cannot access '|ls': No such file or directory
ls: cannot access '|ls': No such file or directory

BASH


mbernard@z3r8p3:~/sgoinfre/42_minishell.c$ ls | ls |ls
ahah    ignore_leaks.supp  libft      minitester-minishell-tester  questions         tests.txt
cat includes       Makefile   non              srcs
coucou  info.txt       minishell  out              sujet_correction.pdf
`mbernard@z3r8p3:~/sgoinfre/42_minishell.c$ ls |ls|ls|ls
ahah    ignore_leaks.supp  libft      minitester-minishell-tester  questions         tests.txt
cat includes       Makefile   non              srcs
coucou  info.txt       minishell  out              sujet_correction.pdf
``
faboussard commented 5 months ago

repaired and pushed