-
I'm consistently failing microshell and Im not sure why.
Could it be an issue with the tester on cluster computers or am I missing something ?
Thanks for any help, I thought I was ready for the exam…
-
-
```
valgrind --leak-check=full --track-origins=yes --track-fds=yes --show-reachable=yes --suppressions=readline.sup ./minishell
==90547== Memcheck, a memory error detector
==90547== Copyright (C) 2…
-
Hello,
while testing some functionalities i noticed few problems and a crash:
```
echo /*/*/*/*/*/*/*/*/*/* into ctrl + C = crash
```
also simple wildcard doesnt works as expected such as :
…
-
Creo que lo mejor es que cada uno de los 3 nos hagamos una aplicación en 42 para tener 3 tokens distintos con los que hacer pruebas: https://profile.intra.42.fr/oauth/applications/new
## AVISO: no de…
-
Selvam Testcases:
axlee@axlee:~/Desktop/42_minishell$ echo $USER+’$HOME’+”$USER9999”
axlee+’/home/axlee’+””
Ours:
axlee@axlee:~/Desktop/42_minishell$ ./minishell
minishell$ echo $USER+echo $USE…
-
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…
-
**Step 1: Copy System Environment Variables**
Since your main function doesn't accept parameters, you won't directly pass the environment to execve. Instead, you'll use execve to replace your current…
-
```bash
GoatShell 🐐: touch s && chmod +x s
GoatShell 🐐: sh s
GoatShell 🐐: ./s
./s: command not found
GoatShell 🐐:
```
### When attempting to execute a newly created file with the ./ s in GoatS…