Feat(WIP): Added possibility to cmd_env to execute commands with
altered env. Added dummy function for cd, echo, setenv & unsetenv Started work on env copy feature
This commit is contained in:
20
srcs/cmd_echo.c
Normal file
20
srcs/cmd_echo.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* cmd_echo.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2019/09/20 14:42:30 by tmaze #+# #+# */
|
||||
/* Updated: 2019/09/20 14:43:52 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
int cmd_echo(char** argv, t_list** env)
|
||||
{
|
||||
(void)argv;
|
||||
(void)env;
|
||||
return (0);
|
||||
}
|
Reference in New Issue
Block a user