From 91d91b0f54ec9795beaf673f20ff87b894a558c4 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 14 Jun 2020 21:26:36 +0200 Subject: WIP: Added eval cmd with redirection and builtins --- include/ast.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/ast.h') diff --git a/include/ast.h b/include/ast.h index 790ac29..c508bd9 100644 --- a/include/ast.h +++ b/include/ast.h @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 17:05:38 by charles #+# #+# */ -/* Updated: 2020/06/14 10:28:53 by charles ### ########.fr */ +/* Updated: 2020/06/14 17:47:10 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -69,9 +69,7 @@ typedef struct s_ast t_line line; t_ftlst *cmd_argv; }; - t_ftlst *in; - t_ftlst *out; - bool is_append; + t_ftlst *redirs; } t_ast; typedef struct s_ret -- cgit