blob: 555be96b88ee74c4c01f6a8e6afa97f45d7338eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_exec.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/11/01 18:46:50 by rbousset #+# ## ## #+# */
/* Updated: 2019/11/01 18:47:21 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <minishell.h>
#include <unistd.h>
int
ft_exec(char **com)
{
uint8_t i;
i = 0;
while (com[i])
i++;
if (!ft_strncmp(com[0], "./", 2))
{
if ((execve(com[0] + 2, com, NULL)) != 0)
return (ft_error(com[0], 127));
}
else
if ((execve(com[0], com, NULL)) != 0)
return (ft_error(com[0], 127));
return (0);
}
|