-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathes11.c
55 lines (50 loc) · 1.34 KB
/
es11.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
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <sys/wait.h>
int main(int argc, char *argv[])
{
if (argc != 2)
{
printf("Numero argomenti sbagliato\n");
exit(1);
}
int p1p2[2], pid, nread;
char articolo_iniziale[10], articolo_finale[10], stringa[2], buff[50], argomento_grep[40];
while (1)
{
printf("Inserisci articolo: \n");
scanf("%s", stringa);
if (strcmp(stringa, "esci") == 0)
{
printf("Esecuzione terminata, esco.\n");
exit(0);
}
sprintf(articolo_iniziale, "ART. %s.", stringa);
sprintf(articolo_finale, "ART. %d.", atoi(stringa) + 1);
sprintf(argomento_grep, "(?<=%s)(?s).*(?=%s)", articolo_iniziale, articolo_finale);
pipe(p1p2);
pid = fork();
if (pid == 0)
{
printf("ciao");
close(p1p2[0]);
close(1);
dup(p1p2[1]);
close(p1p2[1]);
execl("/usr/bin/grep", "-z", "-o", "-P", argomento_grep, argv[1], NULL);
return -1;
}
while (nread = read(p1p2[0], buff, strlen(buff)))
{
write(1, buff, sizeof(buff));
}
close(p1p2[1]);
close(p1p2[0]);
}
close(p1p2[1]);
close(p1p2[0]);
return 0;
}