summaryrefslogtreecommitdiff
path: root/userland/minibox/utilities/sh/lexer.c
AgeCommit message (Collapse)Author
2024-12-15sh: Partially working strings using ""Anton Kling
2024-12-15sh: Add setting environment variablesAnton Kling
2024-12-12formatting: Use clang-format on all projectsAnton Kling
This commit also add braces to all `if` statements.
2024-10-11sh: Add parsing of newlinesAnton Kling
2024-10-09sh: Add support for running commands in the backgroundAnton Kling
2024-10-09sh: Fix incorrectly hardcoded valueAnton Kling
2024-09-12sh: Add support for commentsAnton Kling
2024-05-02sh: Use string view instead of C stringsAnton Kling
2023-11-17Minibox: Add a somewhat improved shellAnton Kling
This shell actually lexes and produces a AST which makes it easier to add features and will makes it more difficult to introduce bugs. So basically it is just better code.