/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* m_argv.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include #include "f_fail.h" #include "d_define.h" #include "m_comm.h" #include "m_init.h" #include "m_loop.h" #include "m_mshrc.h" #include "s_struct.h" static void m_read_script(char *const argv[], t_msh *msh) { int32_t fd; if ((fd = open(*(argv + 1), O_RDONLY)) == -1) f_open_file(*(argv + 1), msh); msh->ret = m_loop(fd, msh); close(fd); } uint8_t m_argv(int argc, char *const argv[], t_msh *msh) { if (argc == 1) { m_init_custom_vars(msh); msh->ret = m_source_mshrc(msh); msh->ret = m_loop(STDIN_FILENO, msh); } else if (argc > 1 && ft_strncmp(*(argv + 1), FT_OPT_COMMAND, 3) == 0) { if (*(argv + 2) == NULL) { ft_dprintf(STDERR_FILENO, "%s: %s: option requires an argument\n", msh->shname, FT_OPT_COMMAND); return (2); } msh->ret = m_comm(*(argv + 2), msh); } else { m_read_script(argv, msh); } return (msh->ret); }