From aabbd212f6ba9a38999ea6e6f478bc8afae677d0 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 9 Oct 2024 13:59:59 +0200 Subject: sh: Add support for running commands in the background --- userland/minibox/utilities/sh/ast.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/minibox/utilities/sh/ast.h') diff --git a/userland/minibox/utilities/sh/ast.h b/userland/minibox/utilities/sh/ast.h index ae43f67..0c5768f 100644 --- a/userland/minibox/utilities/sh/ast.h +++ b/userland/minibox/utilities/sh/ast.h @@ -27,6 +27,7 @@ struct AST { struct AST *pipe_rhs; // in "func1 | func2" func2 is the piped rhs int file_out_fd_to_use; int file_out_append; + int should_background; struct sv file_out; // in "func1 > file.txt" file.txt is the file_out struct AST *next; }; -- cgit v1.2.3