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/utilities/include.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/minibox/utilities/include.h') diff --git a/userland/minibox/utilities/include.h b/userland/minibox/utilities/include.h index 7ffd136..b01d976 100644 --- a/userland/minibox/utilities/include.h +++ b/userland/minibox/utilities/include.h @@ -37,5 +37,6 @@ int wc_main(int argc, char **argv); int ls_main(int argc, char **argv); int touch_main(int argc, char **argv); int ed_main(int argc, char **argv); +int sh_main(int argc, char **argv); int init_main(void); -- cgit v1.2.3