diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-26 18:39:36 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-26 18:39:36 +0200 |
commit | 8b0cb4d5817c8577e8009b6488cb623c183c2dc6 (patch) | |
tree | 154f5a8612c949f3ce70b6eb5fb7af60a08bc151 /src/s_com.c | |
parent | TODO file update (diff) | |
download | 42-minishell-8b0cb4d5817c8577e8009b6488cb623c183c2dc6.tar.gz 42-minishell-8b0cb4d5817c8577e8009b6488cb623c183c2dc6.tar.bz2 42-minishell-8b0cb4d5817c8577e8009b6488cb623c183c2dc6.tar.xz 42-minishell-8b0cb4d5817c8577e8009b6488cb623c183c2dc6.tar.zst 42-minishell-8b0cb4d5817c8577e8009b6488cb623c183c2dc6.zip |
Pretty damn fine
Diffstat (limited to '')
-rw-r--r-- | src/s_com.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/s_com.c b/src/s_com.c index 45a6304..527829d 100644 --- a/src/s_com.c +++ b/src/s_com.c @@ -109,10 +109,8 @@ t_com com->rdr = NULL; nword[0] = C_NUL; ft_strlcpy(nword, word, ARG_MAX); - ft_printf("BEFORE: [%s]\n", nword); if (p_redirs(nword, &com) != 0) return (NULL); - ft_printf("AFTER: [%s]\n", nword); if (msh->alias != NULL) { ret = p_subst_alias(nword, TRUE, msh); |