-
J'ai implémenté le code de mcombeau pour pouvoir tester avec son changement du main:
:warning: Pour que les tests fonctionnent, aller dans bash et faire export de la langue anglaise :warning:
```
…
-
Selvam Testcases:
echo "double"'single''"123"'"'456'"
doublesingle"123"'456'
Ours:
minishell$ echo "double"'single''"123"'"'456'"
double single "123" '456'
Execute a simple command
Then e…
-
axlee@c1r5s3:~/Desktop/submission$ invalid | wc -l
invalid: command not found
0
axlee@c1r5s3:~/Desktop/submission$ ./minishell
minishell$ invalid | wc -l
minishell: invalid: command not found
*I…
-
-
[FIXED]
[edit] $? is fixed
`~/Desktop` is not currently working [edit] fixed!
And this one is not working....
```
echo a b | awk -v RS=" " '{print}' | sort
```
awk:
The `awk` command pr…
-
The . test, [010] on this picture :
![image](https://github.com/mcombeau/minitester-minishell-tester/assets/46427692/b3b44f9f-5602-4043-a685-011ef7ef7ca7)
![image](https://github.com/mcombeau/minite…
-
Set the $PATH to a multiple directory value (directory1:directory2) and ensure that directories are
checked in order from left to right
cd
pwd..
-
Minishell gère `ls|ls|ls` mais pas `ls | ls |ls` ou `ls |ls|ls`
## MINISHELL
```
>>> Minishell>$ ls | ls |ls
ls: cannot access '|ls': No such file or directory
>>> Minishell>$ ls |ls|ls|ls
ls:…
-
Après la sortie de `ls`, l'entrée standard doit rester ouverte.
```
mbernard@z3r8p3:~/sgoinfre/42_minishell.c$ cat | cat | ls
bash_2 ignore_leaks.supp includes info.txt libft Makefile
minis…
-
A tester :
minishell> echo "cat lol.c | cat > lol.c"
Error : unclosed quotes.
minishell> echo 'cat lol.c | cat > lol.c'
Error : unclosed quotes.