-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathash.c
90 lines (74 loc) · 1.25 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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
void
prompt() {
char cwd[256];
getcwd(cwd, 256);
printf("┌─[aSh][%s]\n└─▪ ", cwd);
}
void
tokenize(char *inbuf, char *cmd[]) {
char *ptr, *buf;
int i, size;
buf = inbuf;
ptr = strtok(buf, " ");
i = 0;
while (ptr != NULL) {
cmd[i] = ptr;
ptr = strtok(NULL, " ");
i++;
}
cmd[i] = NULL;
size = i + 1;
}
void
docd(char *inbuf) {
char *cmd[256];
tokenize(inbuf, cmd);
if (chdir(cmd[1]) == -1) {
printf("cd: %s: No such file or directory\n", cmd[1]);
}
}
void
run_exec (char *cmd[]) {
if (execvp(cmd[0], cmd) == -1) {
printf("%s: command not found\n", cmd[0]);
exit(-1);
}
}
void
do_task(char *inbuf) {
int i;
char cmd_string[256], *cmd[256];
get_cmd(inbuf, cmd_string);
while (inbuf[i] != '\0') {
if (inbuf[i] == '>' && inbuf[i+1] == '>') {
;
} else if (inbuf[i]) {
;
}
i++;
}
}
int
main () {
char inbuf[256], *ptr;
while(1) {
prompt();
fgets(inbuf, 256, stdin);
ptr = strchr(inbuf, '\n');
*ptr = '\0';
if (strncmp(inbuf, "exit", 4) == 0) {
exit(0);
} else if (strncmp(inbuf, "cd", 2) == 0) {
docd(inbuf);
} else {
do_task(inbuf);
}
}
}