summaryrefslogtreecommitdiffstats
path: root/src/minishell.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/minishell.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/minishell.c b/src/minishell.c
index 37e1520..ee79f8f 100644
--- a/src/minishell.c
+++ b/src/minishell.c
@@ -30,14 +30,9 @@ int
t_msh *msh;
int32_t ret;
- char *str;
- str = ft_strdup("qwe\'");
- ft_printf("%s\n", str);
- str = ft_strsubst(str, "\'", "");
- ft_printf("%s\n", str);
- return (0);
/* TODO: increment $SHLVL */
- /* TODO: also set $SHELL */
+ /* TODO: also set $SHELL | maybe not bash does not set $SHELL */
+ /* only zsh does */
/* TODO: handle general variables | $var */
if (!(msh = ft_init_msh(argv, envp)))
{