TheSecretOrganization / minishell

MIT License
1 stars 2 forks source link

redirection seems brocken on second pipe? #281

Closed antoineverin closed 9 months ago

antoineverin commented 9 months ago

$ << oui cat | << non cat does nothing $ << oui cat > a | << non cat print the first heredoc but $ << oui cat > a | cat goes well

$ << oui cat > a | cat creates a and print in it $ < .gitignore cat | << non cat deletes a ????????????????