-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshellbuiltin.h
45 lines (41 loc) · 919 Bytes
/
shellbuiltin.h
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
#include<stdio.h>
#include<unistd.h>
#include<string.h>
char pwdbuf[1000];
void cdcommand(char arg[], char homepath[]) {
if(arg[0] == '~') {
char path[100] = "\0";
strcat(path, homepath);
strcat(path, arg+1);
if(chdir(path) == -1) {
perror("Directory error");
}
} else {
if(chdir(arg) == -1) {
perror("Directory error");
}
}
}
void pwdcommand(void) {
printf("%s\n", getcwd(pwdbuf, 1000));
}
void echocommand(char arg[]) {
int start = 4;
while(arg[start] == ' ') {
start++;
}
for(int i=start;i<strlen(arg);i++) {
if(arg[i] == '"') {
continue;
} else if(arg[i] == ' ') {
while(arg[i] == ' ') {
i++;
}
i--;
printf(" ");
} else {
printf("%c", arg[i]);
}
}
printf("\n");
}