From b8501210aefeff45b2eb75429c6e3ca2c1ecc983 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Tue, 17 Sep 2024 20:44:04 -0400 Subject: changed tokenizer to handle all the chaining operators --- src/lush.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lush.h') diff --git a/src/lush.h b/src/lush.h index 15d4d71..6836be2 100644 --- a/src/lush.h +++ b/src/lush.h @@ -35,7 +35,7 @@ int lush_num_builtins(); int lush_run(lua_State *L, char ***commands, int num_commands); char *lush_read_line(); -char **lush_split_pipes(char *line); +char **lush_split_commands(char *line); char ***lush_split_args(char **commands, int *status); void lush_execute_command(char **args, int input_fd, int output_fd); -- cgit v1.2.3-59-g8ed1b