-
`sleep 4` with CTRL+C prints `minishell>` twice
-
`echo $DONT salut` doit rendre
`salut` et pas ` salut`
-
![image](https://github.com/42-tronc/minishell/assets/28269333/e8d1bc0d-b49c-4ed2-bb04-ce2b809ec376)
-
-
echo only print arguments but not parse if exist or not variable
expected:
echo $PWD
echo $SHELL
this print must be return values
-
When execute command, the adapter receive `char *arg` but must be a list of words.
This can be solved convert this unique sentence of string to a matrix of strings. `char *str` to `char **strgs` for e…
-
What's happend?
Execute a wrong command and in valgrind show this message
==1141== 1 errors in context 2 of 2:
==1141== Use of uninitialised value of size 8
==1141== at 0x109665: …
-
-
https://github.com/TR-42/minishell/blob/afcc8c0a45cff067906d62d3d5c4bab361e38434/srcs/serializer/_serializer_var.c#L19
`ft_isalnum`関数を使用しているせいで、変数名として英数字の範囲しか使用できなくなっている。
しかし、`$?`で終了コードを取得できたり、`$A…
-
Main contains to many functions and commands.
This file main.c can be shorted with group of struct and same object