AAAAAAAAAAAAAA

This commit is contained in:
Tom Moron
2024-02-15 17:03:05 +01:00
parent a91ff4750d
commit d209f7de5a
7 changed files with 63 additions and 18 deletions

3
main.c
View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/02 21:59:20 by tomoron #+# #+# */
/* Updated: 2024/02/13 16:16:46 by marde-vr ### ########.fr */
/* Updated: 2024/02/15 14:13:57 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -81,6 +81,7 @@ int main(int argc, char **argv, char **envp)
add_history(command);
parsed_cmd = parse_command(command, env);
free(command);
print_parsed_cmd(parsed_cmd);//debug
exec_command(parsed_cmd, env);
free_cmd(parsed_cmd);
}