diff options
Diffstat (limited to 'userland/minibox/utilities/sh/ast.h')
-rw-r--r-- | userland/minibox/utilities/sh/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; }; |