mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 03:16:51 +01:00
「✨」 feat(heredoc.c): ft_heredoc :D
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/20 09:19:39 by mmoussou #+# #+# */
|
||||
/* Updated: 2024/05/20 11:07:21 by mmoussou ### ########.fr */
|
||||
/* Updated: 2024/05/21 00:34:48 by mmoussou ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -19,7 +19,7 @@ int ft_heredoc(char *delimiter)
|
||||
int status;
|
||||
char *line;
|
||||
|
||||
tmp_fd = open("/tmp/.minishell-heredoc", O_RDWR | O_CREAT, 0644);
|
||||
tmp_fd = open("/tmp/.minishell-heredoc", O_RDONLY | O_WRONLY | O_TRUNC | O_CREAT, 0644);
|
||||
if (tmp_fd == -1)
|
||||
return (-1);
|
||||
fork_pid = fork();
|
||||
@ -38,6 +38,7 @@ int ft_heredoc(char *delimiter)
|
||||
free(line);
|
||||
line = readline("heredoc> ");
|
||||
}
|
||||
free(line);
|
||||
status = write(tmp_fd, "\0", 1);
|
||||
if (status == -1)
|
||||
{
|
||||
|
Reference in New Issue
Block a user