-
Notifications
You must be signed in to change notification settings - Fork 0
/
ash.c
158 lines (121 loc) · 2.69 KB
/
ash.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
char *readLine(void)
{
char *fullLine = malloc(1000);
int adder = 0;
while (1)
{
char in = fgetc(stdin);
if (in == EOF || in == '\n')
{
// ending on null byte
fullLine[adder] = '\0';
return fullLine;
}
else
{
fullLine[adder] = in;
adder++;
}
}
}
void splitToArgs(char *fullLine, char **userArgs)
{
char *stringToken = strtok(fullLine, " ");
int i = 0;
while (stringToken != NULL)
{
userArgs[i] = stringToken;
stringToken = strtok(NULL, " ");
i++;
}
}
void cdCommand(char *userString)
{
chdir(userString);
}
void executeAndWait(char **userArgs)
{
pid_t childID = fork();
if (childID == 0)
{
execvp(userArgs[0], userArgs);
}
else
{
int errorCode;
waitpid(childID, &errorCode, 0);
}
}
void historyCommand(char *commandType, char **historyOfUser)
{
for (int i = 1; i <= 10; i++)
{
printf("%d: %s\n", i, historyOfUser[i-1]);
if (historyOfUser[i]==NULL)
{
break;
}
}
}
void addToHistory(char *userString, char **historyOfUser)
{
for (int i = 9; i > 0; i--)
{
historyOfUser[i] = historyOfUser[i-1];
}
char *temp = malloc(1000);
strcpy(temp, userString);
historyOfUser[0] = temp;
}
int main()
{
// Char where we will store users full command line
char *fullCommand = malloc(1000);
// attaching program run
char *OGdirectory = malloc(1000);
getcwd(OGdirectory, 1000);
// History variable
char **historyCommands = malloc(1000);
while (strcmp(fullCommand, "exit") != 0)
{
// Resetting the users old line
memset(fullCommand, 0, sizeof(fullCommand));
// Taking the users full line
fullCommand = readLine();
// Adding this to command history
addToHistory(fullCommand, historyCommands);
// Resetting an args 2d array
char **userArgs = malloc(1000);
// Filling the array with users args
splitToArgs(fullCommand, userArgs);
// If command is cd
if (strcmp(userArgs[0], "cd") == 0)
{
if (userArgs[1] == NULL)
{
cdCommand(OGdirectory);
}
else
{
cdCommand(userArgs[1]);
}
}
// If command is history
else if (strcmp(userArgs[0], "history") == 0 || strcmp(userArgs[0], "h") == 0)
{
historyCommand(userArgs[1], historyCommands);
}
// Run built-in normal commands
else
{
executeAndWait(userArgs);
}
free(userArgs);
}
return 0;
}