saladuit / minishell

This project is about creating a simple Buzinga. "I am not crazy, my mother had me tested."
MIT License
0 stars 2 forks source link

Heredoc #73

Open lucienvb opened 1 year ago

lucienvb commented 1 year ago

When we execute the following lines / signals in Sheldon we have other behavior then bash.

<< end cat `hello' CTRL-C or CTRL-D

Output Sheldon: Sheldon$ << end cat

hallo ^C Sheldon$ << end cathallo Sheldon$

Output bash: bash-3.2$ << end cat

hallo

bash-3.2$