-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
94 lines (67 loc) · 2.41 KB
/
main.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include "myecho.h"
#include "myenv.h"
#include "isset.h"
#include "myprocess.h"
/*
#include <readline/readline.h>
#include <readline/history.h>
*/
#define ARGC 3
#include <stdlib.h>
int main(int argc, char* argv[], char* envp[]){
/* ------------- AUFGABE 1 ------------- */
/* Erste, nicht so schöne Variante für echo */
char* myArray[ARGC] = {"fancyWord", "anotherFancyWord", "thirdFancyString"};
myecho(ARGC, &myArray);
/* Zweite, schönere Variante für echo */
myechoAlt(ARGC, "string", "stringsSoundNice", "wohooILoveStrings!");
/* Umgebungsvariablen ausgeben */
myenv(envp);
/* ------------- AUFGABE 2 ------------- */
/* Überprüfen, ob Umgebungsvariablen gesetzt */
int isMyVarSet = isset("HOME", argc);
printf("isset returned %d.\n\n", isMyVarSet);
/* Namen und Wert der Umgebungsvariablen ausgeben lassen */
isMyVarSet = isset("HOME", argc, "-v");
printf("isset returned %d\n\n", isMyVarSet);
/* ------------- AUFGABE 3 ------------- */
/* Prozess starten, pid ausgeben lassen*/
pid_t myPid = fork();
printf("%d\n\n", (int)myPid);
myProcess("/usr/bin/gedit", argv);
/* Aufgabe 4 hat nicht so richtig geklappt */
/* folgendes wurde unternommen:
error: readline/readline.h could not be resolved
Lösung: Mit Terminal installieren
sudo apt-get install libreadline-dev
#include <readline/readline.h>
#include <readline/history.h>
char* path = readline(const char* path);
error: expected expression before const.
Frage: wozu wird hier history verwendet?
werde nicht so ganz schlau aus der man-page
bzw. andere Varianten mit
scanf und fgets, z.B:
#define MAX_ARGC = 100;
...
char* path[100];
printf("Geben Sie einen Pfad an.");
fgets(path, 100, stdin);
char* pArgv[100]
char quit = 'n';
int i = 1;
while((quit!='j') && i<MAX_ARGC){
printf("Wollen Sie noch ein Argument eingeben [j\n]");
scanf("%c", &quit);
fgets(pArgv, 100, stdin);
i++;
}
...
myProcess(path, pArgv);
verschiedene Varianten dieses Ansatzes führten
zu segmentation faults oder undefined behaviour.
*/
/* ---------------- Sonstiges/Testfunktionen --------------- */
printf("\n\n");
return EXIT_SUCCESS;
}