Alicia-bites / minishell

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

FILE SHOULD NOT BE FOUND #40

Closed Alicia-bites closed 2 years ago

Alicia-bites commented 2 years ago

MINISHELL

$: echo hey > srcs/hello
$: >srcs/bonjour >srcs/hello <prout```

#EXPECTED
after all this commands, should say `prout:no such file or directory`

# TOKENIZATION

index = 0 token = > toktype = 11

index = 1 token = srcs/bonjour toktype = 15

index = 2 token = > toktype = 11

index = 3 token = srcs/hello toktype = 15

index = 4 token = < toktype = 10

index = 5 token = prout toktype = 15

BarrierAntho commented 2 years ago

STATUS: Message and behavior ok but exit status wrong