You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.2 KiB
59 lines
2.2 KiB
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* caller.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/05/03 11:48:16 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/05/03 13:57:06 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "minishell.h"
|
||
|
/*
|
||
|
int command_call(char *argv[], int input_fd, int output_fd)
|
||
|
{
|
||
|
if (ft_strncmp(argv[0], "echo", 4) == 0)
|
||
|
return (ft_echo(argv, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "pwd", 3) == 0)
|
||
|
return (ft_pwd(argv, input_fd, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "cd", 2) == 0)
|
||
|
return (ft_cd(argv, input_fd, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "export", 6) == 0)
|
||
|
return (ft_export(argv, input_fd, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "unset", 5) == 0)
|
||
|
return (ft_unset(argv, input_fd, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "env", 3) == 0)
|
||
|
return (ft_env(argv, input_fd, output_fd));
|
||
|
else if (ft_strncmp(argv[0], "exit", 4) == 0)
|
||
|
return (close_minishell(0));
|
||
|
else
|
||
|
{
|
||
|
errno = EINVAL;
|
||
|
return (-1);
|
||
|
}
|
||
|
}
|
||
|
*/
|
||
|
void exe(char *argv[], char *const envp[])
|
||
|
{
|
||
|
char **path_dirs;
|
||
|
char *path;
|
||
|
size_t path_length;
|
||
|
|
||
|
|
||
|
execve(argv[0], argv, envp);
|
||
|
path_dirs = ft_split(getenv("PATH"), ':');
|
||
|
while (path_dirs)
|
||
|
{
|
||
|
path_length = ft_strlen(*path_dirs) + ft_strlen(argv[0]) + 2;
|
||
|
path = ft_calloc(path_length, sizeof(char));
|
||
|
ft_memcpy(path, *path_dirs, ft_strlen(*path_dirs));
|
||
|
ft_memcpy(path + ft_strlen(*path_dirs),"/", 1);
|
||
|
ft_memcpy(path + ft_strlen(*path_dirs) + 1, argv[0], ft_strlen(argv[0]));
|
||
|
free(path);
|
||
|
execve(path, argv, envp);
|
||
|
path_dirs++;
|
||
|
}
|
||
|
}
|