Alicia-bites / minishell

This project is about creating a simple shell.
1 stars 0 forks source link

ls | ls | echo hola | rev #23

Closed Alicia-bites closed 2 years ago

Alicia-bites commented 2 years ago

ls | ls | echo hola | rev

bash: bash: ls: No such file or directory bash: ls: No such file or directory bash: rev: No such file or directory

minishell: aloh

BarrierAntho commented 2 years ago

I do not have the same beahvior as you

BASH

➜  42_minishell git:(main) ✗ bash
abarrier@e1r4p1:~/42_minishell$ ls | ls | echo hola | rev
aloh
abarrier@e1r4p1:~/42_minishell$ 

MINISHELL:

  42_minishell git:(main) ✗ ./minishell 
$: ls | ls | echo hola | rev
aloh
$: