-
minishell> cd goinfre
minishell> ls
docker
minishell> pwd
/goinfre/msantill
minishell>
-
`exit` のエラー処理についてbashと一致しない箇所がありました
bash
```bash
bash-3.2$ exit 666 666
exit
bash: exit: too many arguments
```
minishell
```bash
minishell$ exit 666 666
minishell: exit: too many argument…
-
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…
-
https://github.com/PalmNeko/minishell/wiki/design/
- [ ] #3
- [ ] #4
- [ ] #5
- [ ] #6
- [ ] #7
- [ ] #8
- [ ] #2
- [ ] #9
-
### Context
I'm running macOS Catalina (Version 10.15.7). I recently downloaded the latest version of Valgrind, and now I see "???" for every source of leak. The previous version worked perfectly y…
-
Probable Fix: ignore sigint for the parent Before it finishes waiting and AFTER making children
-
各変数の設計
- [x] echo
- [x] cd
- [x] pwd
- [x] export
- [x] unset
- [x] env
- [x] exit
https://github.com/PalmNeko/minishell/wiki/design/
-
Variables that expand to empty (only '\0' or only consist of whitespace) are not processed during cmd exc (compare to empty string example in next comment)
Minishell:
```bash
🌈 minishell$ $noexis…
-
-
- [ ] 必要なデータの洗い出し
- [ ] minishellそのもので使うデータの洗い出し
- [ ] 文法解析時に使うデータの洗い出し