diff --git a/.syntatics.c.swp b/.main.c.swp similarity index 83% rename from .syntatics.c.swp rename to .main.c.swp index 0f707c9..be044bd 100644 Binary files a/.syntatics.c.swp and b/.main.c.swp differ diff --git a/main.c b/main.c index 866178a..4e99626 100644 --- a/main.c +++ b/main.c @@ -30,14 +30,12 @@ int main(int ac, char **av, char **env) if (ac == 1) return (1); line = ft_normalizer(av[1]); - ft_printf("%s\n", line); data.env = init_env(env); if (data.env == NULL) return (1); cmds = ft_parse_cmds(line); if (cmds == NULL) return (1); - ft_printf("%s\n", line); if (ft_cmds_executor(cmds, env) == 1) { ft_lstclear(data.env, env_del);