-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredirects.c
58 lines (51 loc) · 1.12 KB
/
redirects.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "shell.h"
/*
redirects.c – verifica se existe algum redirecionamento para colocar!
*/
int redirects(char *args[], int numargs)
{
if(numargs < 3)
{
return 0;
}
if(0 == strcmp(args[numargs-2], "2>"))
{
int fd = creat(args[numargs-1], S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if(fd < 0)
{
return -1;
}
//numero negative para indicar um erro
dup2(fd, STDERR_FILENO);
close(fd);
args[numargs-2] = NULL;
numargs=numargs-2;
}
else if((0 == strcmp(args[numargs-2], ">")) || (0 == strcmp(args[numargs-2], ">>")))
{
int fd = creat(args[numargs-1], S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if(fd < 0)
{
return -1;
}
//numero negative para indicar um erro
dup2(fd, STDOUT_FILENO);
close(fd);
args[numargs-2] = NULL;
numargs=numargs-2;
}
else if(strcmp(args[numargs-2], "<") == 0)
{
int fd = open(args[numargs-1], O_RDONLY);
if(fd < 0)
{
return -1;
}
//numero negative para indicar um erro
dup2(fd, STDIN_FILENO);
close(fd);
args[numargs-2] = NULL;
numargs=numargs-2;
}
return numargs;
}