/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* exec_cmd_line.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lperrey +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/11/16 01:57:38 by lperrey #+# #+# */ /* Updated: 2021/12/05 09:28:00 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int exec_cmd_line(t_all *c) { if (!pipeline(c)) { free_pipeline(&c->pipeline); return (0); } //write(1, "here\n", 5); return (1); } /* 2.9.1 Simple Commands - Command Search and Execution https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html #tag_18_09_01_01 */