-
```sh
ymori@ubuntu:~/42/minishell$ ./minishell
minishell> bash
ymori@ubuntu:~/42/minishell$ exit
exit
minishell> exit
exit
=================================================================
…
-
export, unset 내에서 char**argv를 일일이 refine_line 적용 시켜주기
```
(i)case one
export aaa=$OLDPWD 가능
but
unset $aaa or unset aaa 불가능 (에러메시지)
(ii)case two
export aaa=$LOGNAME 가능
and
unset $aaa or …
-
Line 1: cd .. \n pwd Success!
_________________________________________________________________
Line 2: cd /Users \n pwd Success!
_________________________________________________________________
…
-
cat should not quit but wait for input | DONE
fix this error : "export: `_=/usr/bin/env' not a valid identifier" | DONE
trim string, space should not create new token | DONE
echo flag -n redo | DO…
-
readlineにバグがあるらしい🔥
-
feat_ Criar v0.1 do projeto
- [ ] task_ Criar uma estrutura de dados
- [ ] task_ Criar parser para o comando Echo
- [ ] task_ Criar o executor que chame Echo e retorne
cat echoed.txt > void.t…
-
-
- [ ] export var - adds to the list key var with empty value
- [ ] export var=smt - if var does not exist adds entry, if exists - changes value
- [ ] unset var - removes var from list. if no var or no…
-
42Checker n'arrive pas a tester les fuite sur printf avec la command leaks
voici le fichier que donne 42checker quand il test les leaks sur printf :
[myleaks.txt](https://github.com/jgigault/42FileC…
-
**Describe the bug**
Can't recognize return line on a simple main.
**Erroneous code**
```c
#include
int main(void)
{
struct
{
int x;
} …