diff options
| author | Christopher Uhlig | 2025-01-20 13:06:34 +0100 |
|---|---|---|
| committer | Christopher Uhlig | 2025-01-20 13:06:34 +0100 |
| commit | 8f5abcdb257393a2e576fe382835e8e060662834 (patch) | |
| tree | 1b923423b22bb59ff10ea07b0700a5a7bdf96f5a /src/repl.c | |
| parent | 3392f2b811269f174620832d663b09ef4f4e43f3 (diff) | |
| download | minishell-8f5abcdb257393a2e576fe382835e8e060662834.tar.gz minishell-8f5abcdb257393a2e576fe382835e8e060662834.zip | |
merged
Diffstat (limited to 'src/repl.c')
| -rw-r--r-- | src/repl.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ /* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/24 16:07:04 by dkaiser #+# #+# */ -/* Updated: 2025/01/14 15:39:58 by chuhlig ### ########.fr */ +/* Updated: 2025/01/20 12:45:00 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ @@ -23,7 +23,7 @@ void repl(const char *prompt, t_env **env, int *promptflag) while (1) { input = readline(prompt); - if (input == NULL) + if (input == NULL) { if (*promptflag > 1) (*promptflag)--; @@ -41,3 +41,5 @@ void repl(const char *prompt, t_env **env, int *promptflag) free(input); } } + +//echo hi | >./outfiles/outfile01 echo bye >./test_files/invalid_permission
\ No newline at end of file |
