I’m stuck on Stage #UN3.
I’ve tried to test manually, and the redirections work as expected,
Here are my logs:
$ ls -1 nonexistent >> baz.md
ls: nonexistent: No such file or directory
$ ls
README.md app codecrafters.yml tests.py your_program.sh
__pycache__ baz.md pyproject.toml
$
This shows that the file was created even when the command failed and that’s the expected behavior.
But in the tests, the testers passes one value and expects another, which feels like a simple typo
Am I missing something here? Here is a link to my Github Repository
https://github.com/brianobot/codecrafters-shell-python.


