EnriqueSLeeK / minishell

A simple and mini shell
0 stars 1 forks source link

Unexpected behaviour: operand arguments #13

Closed EnriqueSLeeK closed 2 years ago

EnriqueSLeeK commented 2 years ago

If the operand argument is a valid binary it will execute it

 minishell > cat << echo asdv
> dd
> dd
> echo
asdv

 minishell > echo > echo asdv
asdv

The same thing happens to other operands too