mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 03:16:51 +01:00
「🏗️」 wip: testing check on in and out file
This commit is contained in:
@ -6,10 +6,10 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/06/30 12:52:22 by adjoly #+# #+# */
|
||||
/* Updated: 2024/07/29 21:15:29 by adjoly ### ########.fr */
|
||||
/* Updated: 2024/07/30 16:42:50 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
\
|
||||
|
||||
#include "libft.h"
|
||||
#include "parsing.h"
|
||||
#include <stdbool.h>
|
||||
@ -37,6 +37,7 @@ bool check_pipe(char *readline)
|
||||
{
|
||||
while (tmp && *tmp && ft_isspace(*tmp))
|
||||
tmp++;
|
||||
printf("%s\n", tmp);
|
||||
if (!tmp && !*tmp)
|
||||
return (send_error_parsing("No command after pipe"));
|
||||
}
|
||||
|
@ -6,15 +6,13 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/07/29 19:18:19 by adjoly #+# #+# */
|
||||
/* Updated: 2024/07/29 19:31:02 by adjoly ### ########.fr */
|
||||
/* Updated: 2024/07/30 14:36:47 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "parsing.h"
|
||||
#include "error_msg.h"
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
bool check_wspace(char *readline)
|
||||
{
|
||||
while (*readline && ft_isspace(*readline))
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/30 10:48:41 by adjoly #+# #+# */
|
||||
/* Updated: 2024/07/20 17:16:57 by adjoly ### ########.fr */
|
||||
/* Updated: 2024/07/30 17:17:13 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -31,8 +31,10 @@ t_cmd *get_redir_fd(void *content, t_list *tmp)
|
||||
while (tmp)
|
||||
{
|
||||
open_redir((t_redirection *)tmp->content, cmd, sign);
|
||||
if (cmd->infile == -2)
|
||||
if (cmd->infile >= -1 || cmd->outfile == -1)
|
||||
{
|
||||
if (cmd->infile == -1 || cmd->outfile == -1)
|
||||
send_error_parsing(ERROR_NO_FILE);
|
||||
free(cmd);
|
||||
return (NULL);
|
||||
}
|
||||
|
Reference in New Issue
Block a user