From 01a9392ad6051878e217bffeffd6261ccf994c42 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 17 Nov 2023 23:58:14 +0100 Subject: Minibox: Add a somewhat improved shell 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. --- userland/minibox/minibox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'userland/minibox/minibox.c') diff --git a/userland/minibox/minibox.c b/userland/minibox/minibox.c index 63eaee8..f3950df 100644 --- a/userland/minibox/minibox.c +++ b/userland/minibox/minibox.c @@ -22,7 +22,7 @@ typedef struct Command { Command utilities[] = {COMMAND(minibox), COMMAND(ascii), COMMAND(echo), COMMAND(cat), COMMAND(yes), COMMAND(wc), COMMAND(init), COMMAND(ls), COMMAND(touch), - COMMAND(ed)}; + COMMAND(ed), COMMAND(sh)}; char *parse_filename(char *str) { char *tmp = NULL, *is = str; -- cgit v1.2.3