summaryrefslogtreecommitdiff
path: root/userland/minibox/utilities/sh/lexer.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-10-09 13:59:59 +0200
committerAnton Kling <anton@kling.gg>2024-10-09 13:59:59 +0200
commitaabbd212f6ba9a38999ea6e6f478bc8afae677d0 (patch)
treecb05eab3124b5e136ec6e6425e13a6765c50b7a7 /userland/minibox/utilities/sh/lexer.h
parent3743da5e714696adc9537eae8134a583f36aa1e6 (diff)
sh: Add support for running commands in the background
Diffstat (limited to 'userland/minibox/utilities/sh/lexer.h')
-rw-r--r--userland/minibox/utilities/sh/lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/minibox/utilities/sh/lexer.h b/userland/minibox/utilities/sh/lexer.h
index b8ca95c..887c923 100644
--- a/userland/minibox/utilities/sh/lexer.h
+++ b/userland/minibox/utilities/sh/lexer.h
@@ -11,6 +11,7 @@ typedef enum {
TOKEN_PIPE,
TOKEN_STREAM,
TOKEN_STREAM_APPEND,
+ TOKEN_BACKGROUND,
} token_type_t;
struct TOKEN {