42_minishell/builtins/export.c

32 lines
1.3 KiB
C
Raw Normal View History

2023-02-14 11:11:39 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* export.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/14 14:27:08 by cchauvet #+# #+# */
/* Updated: 2023/02/14 14:52:50 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#include "../minishell.h"
2023-02-17 11:46:12 -05:00
int print_export(t_list **head, int fd)
2023-02-14 11:11:39 -05:00
{
t_list *current;
2023-02-17 11:46:12 -05:00
current = *head;
while (current->next != NULL)
2023-02-14 11:11:39 -05:00
{
2023-02-17 11:46:12 -05:00
write(fd, "declare -x ", 11);
ft_putstr_fd(((t_env *)(current->content))->key, fd);
ft_putstr_fd("=", fd);
write(fd, "\"", 1);
ft_putstr_fd(((t_env *)(current->content))->value, fd);
write(fd, "\"\n", 2);
2023-02-14 11:11:39 -05:00
current = current->next;
}
return (0);
}