-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShellV1.c
64 lines (55 loc) · 1.67 KB
/
ShellV1.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
59
60
61
62
63
64
/*
on decoupe la chaine obtenue et on les enfile dans une tableau de pointeur
*/
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>
#include<sys/wait.h>
#define TAILLELECTURE 200
#define TAILLETABLEAU 30
int main() {
char commande[TAILLELECTURE];// tableau contenant la chaine lue au clavier
char *arguments[TAILLETABLEAU]; //tableau contenant les arguments découpés
char *s; //caractere retourne par par la decoupage
char test[]={'\n','&'};
int etatfils, i, pid;
printf(">");
//on lit 200 caractere dans le flux stdin correpondant aux données rentrées au clavier
while (fgets(commande, TAILLELECTURE, stdin) != NULL)
{
if ((pid = fork()) != 0) { // Père
for (i = 0; commande[i] !=test[0] && commande[i] !=test[1]; i++);
if (commande[i] != test[1]){
wait( & etatfils);
printf("Code de retour = %d\n", WEXITSTATUS(etatfils));
} else printf("[%d]\n", pid);
printf(">");
} else { // Fils
for (i = 0; commande[i] != test[0] && commande[i] != test[1]; i++);
printf("ehhhhhhhhhhhh %d\n",i);
commande[i] = '\0';
for(i=0;s=strtok(commande," ");i++)
{
}
execlp(commande,commande, NULL);
perror("Erreur a l’execl");
exit(1);
}
} // while
}
/*
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#define NB_ARGUMENTS 16
int main(int argc, char **argv){
char *argv_exec[NB_ARGUMENTS]; int indice;
if (argc < 2) {printf("Usage : programme commande liste_arguments\n"); exit(1);}
for (indice = 0; indice < argc; indice++) argv_exec[indice] = argv[indice + 1];
argv_exec[indice]=NULL;
execvp(argv_exec[0],argv_exec);
perror(argv_exec[0]);
exit(2);
return 0;
}
*/