aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main.h b/src/main.h
index aaaea13..09b1585 100644
--- a/src/main.h
+++ b/src/main.h
@@ -9,15 +9,17 @@ typedef struct{
typedef enum{
Stdout=0,
Redirect=1,
- Pipe=2,
- Continue=3,
- If=4,
+ Append=2,
+ Pipe=3,
+ Continue=4,
+ If=5,
} cmd_t;
typedef struct CMD{
char *cmd;
cmd_t type;
int stdInFd;
+ char *out_dir;
struct CMD *next;
int status;
} CMD;