-
@fucalerro
`echo "` should open as in bash :
```BASH
➜ 42-minishell git:(main) ✗ echo "
dquote>
dquote>
dquote>
dquote> "
```
But actually :
```BASH
➜ 42-minishell git:(main) ✗ ./min…
Lu-ni updated
7 months ago
-
Attached pipes not creating new lexer nodes
in this example :
```bash
ilkayyanar:~/travail/repo_github/minishell-42$ ls|cat|cat
noeud[0]--->[ls:0]--->[|:0]--->[cat:0]--->[|:0]--->[cat:0]
token …
RPDJF updated
6 months ago
-
➜ 42_minishell.c git:(exec) ✗ ./minishell
>>> Minishell>$ ls
>>> Minishell>$ ls -l
>>> Minishell>$
[1] 15821 segmentation fault (core dumped) ./minishell
➜ 42_minishell.c git:(exe…
-
```
/workspaces/42-minishell ❯ echo 1 | >tmp_out
AddressSanitizer:DEADLYSIGNAL
=================================================================
==13615==ERROR: AddressSanitizer: SEGV on unknown a…
-
-
```BASH
/Users/bob/src/42-minishell🌻 /bin/ls
command not found: No such file or directory
/Users/bob/src/42-minishell🌻 ./minishell
command not found: No such file or directory
/Users/bob/sr…
Lu-ni updated
7 months ago
-
## MINISHELL
```
>>> Minishell>$ cat cat
coucou
>>> Minishell>$ echo miaou > cat
miaou > cat
>>> Minishell>$ cat cat
coucou
```
## BASH
```
bash-5.2$ echo miaou > cat
bash-5.2$ cat cat
…
-
ls -a|ls -l affiche bien le résultat de la commande ls -l seulement. Cela se produit parce que la commande ls -l est exécutée en second et remplace la sortie de la commande ls -a qui est la première …
-
Message à afficher lors de l'arret de l'entree standard par Ctrl + \
"^\Quitter (core dumped)"
-
input:
echo "'\\'"
actual output:
echo \\
expected output:
echo \'\\\'
same with:
same with: