This commit is contained in:
whaffman 2025-03-06 14:09:19 +01:00
parent 2d0794bbec
commit 745889a4dd

View File

@ -16,6 +16,8 @@ A lot of amazing shell stuff
- `cat $PWD/test` should expand, - `cat $PWD/test` should expand,
- `cd -` : `bash: cd: OLDPWD not set` - `cd -` : `bash: cd: OLDPWD not set`
- `cd ~` : does not expand ? - `cd ~` : does not expand ?
- ~ does expand in bash but not in any quotes
- `echo a '' b` = "a b" ipv "a b"
## Tester ## Tester
- [minishell_tester](https://github.com/LucasKuhn/minishell_tester) - [minishell_tester](https://github.com/LucasKuhn/minishell_tester)
@ -55,9 +57,9 @@ A lot of amazing shell stuff
* [x] $var * [x] $var
* [x] $? * [x] $?
* [ ] ~ * [ ] ~
- [ ] export without arguments - [x] export without arguments
- [ ] ft_free_arr_safe in environment mess - [ ] ft_free_arr_safe in environment mess
- [ ] builtins not first in pipeline? wtf is happening HAHAHAHAHAH its not using builtin, but core-utils - [x] builtins not first in pipeline? wtf is happening HAHAHAHAHAH its not using builtin, but core-utils
- CB command to change banner - CB command to change banner
- __Bonus:__ Command tree for &&, ||, * - __Bonus:__ Command tree for &&, ||, *