30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* exec_cmd_line.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/11/16 01:57:38 by lperrey #+# #+# */
|
|
/* Updated: 2021/12/01 16:07:48 by lperrey ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int exec_cmd_line(t_all *c)
|
|
{
|
|
if (!pipeline(c))
|
|
{
|
|
free_pipeline(&c->pipeline);
|
|
return (0);
|
|
}
|
|
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
|
|
*/
|