用c语言实现自己的 shell

写在前面:

shell 是操作系统中,帮助用户通过命令行界面控制系统的执行文件,他随着终端创建而运行。

功能:

  1. 实现管道,输入输出重定向。
  2. 支持后台运行程序。
  3. 支持cd,包括切换到绝对路径,相对路径,切换至上一次的目录位置。
  4. 在shell内部屏蔽了 ctrl + c 等中断进程信号。
  5. 界面美观。目录显示参考了 fish 的表现方法,整体界面干净整洁。
  6. 支持大批量复制。

基本思路:

  1. 在main函数内注册好需要屏蔽的信号,之后执行firstShow,展示欢迎界面,后进入shell函数内。
  2. 以shell函数为主函数,来创建其他的函数,包括解析命令行,路径搜索,处理进程的创建和清除,处理管道,处理重定向等等。

源代码:

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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
#define _GNU_SOURCE// 用来导入GNU扩展,使得中文内容编码正常
#include <fcntl.h>
#include <unistd.h>
#include <locale.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/wait.h>// 等待子进程
#include <string.h>// 字符串比较
#include <signal.h>// 中断 ctrl + c 信号

#define COLOR_RESET "\033[0m" // 重置
#define COLOR_WELCOME "\033[1;34m" // 欢迎界面(粗体蓝色)
#define COLOR_POINT "\033[2;32m" // 高亮显示当前行指向(粗体暗绿色)
#define COLOR_HIGHLIGHT "\033[1;32m" // 高亮显示当前行索引(粗体亮绿色)
#define MAX_PATH 256
#define MAX_ARGS 64
#define MAX_BGPROCESS 128
#define MAX_PIPES 16


typedef struct {
pid_t pid;
char command[256];
int isstillhere;
}Bgprocess;

typedef struct {
char *args[MAX_ARGS];
int argc;
char *inputFile;
char *outputFile;
int appendOutput; // 1代表>>,0代表>
int hasPipe;
int pipeFd[2];
} Command;

Bgprocess bgProcess[MAX_BGPROCESS];// 后台进程
int bgpCount = 0;// 后台进程数


void FirstShow();
void Shell();
void Error(int isError);
int ParseCommand(char* command, char* args[], int* isback);// 解析命令行,将token放入参数指针数组
char* SearchPath(char* command);// 路径搜索
void SignalZombie(int sig); // 处理僵尸进程
void AddBgProcess(pid_t pid, char* command);// 添加后台进程
void CheckBgProcess(void);// 检查后台进程
void CleanCommand(Command commands[]);// 清理管道
char* simpleCurrentPath(char currentPath[]);// 简化路径显示
int isChinese(const char* str);


/*
以下三个函数先设置command结构体,之后设置重定向,最后创建进程执行管道
*/

int HandlePipe(Command commands[], char command[], char* args[], int* isback);// 处理管道
int setRediraction(Command commands[]);// 设置重定向
void execPipe(Command commands[], int cmdCount, int isback);// 执行管道

int main() {
// 注册信号
signal(SIGINT, SIG_IGN);// 解决ctrl + c中断进程的问题
signal(SIGQUIT, SIG_IGN);// 解决ctrl + \中断进程的问题
signal(SIGCHLD, SignalZombie);// 处理僵尸进程

setvbuf(stdin, NULL, _IOLBF, 0);// 处理行缓冲,使得快速显示内容
setvbuf(stdout, NULL, _IOLBF, 0);

FirstShow();//启动整体程序
exit(EXIT_SUCCESS);
}

int isChinese(const char* str) {
// UTF-8中文字符的第一个字节范围:0xE4-0xE9
unsigned char c = (unsigned char)str[0];
return (c >= 0xE4 && c <= 0xE9);
}


char* simpleCurrentPath(char currentPath[]) {
if(strcmp(currentPath, "/") == 0) {
return currentPath;
}

char copy[MAX_PATH];
copy[0] = '\0';
strcat(copy, currentPath);
int cnt = 0;
int cntToken = 0;

for(int i = 0; i < strlen(currentPath); ++i) {
if(currentPath[i] == '/') {
cnt++;
}
}

static char result[MAX_PATH] = "";
result[0] = '\0';

char* token = strtok(copy, "/");
while(token && cntToken <= cnt - 2) {
if(strcmp("home", token) == 0) {
strcat(result, "/~");
}else {
strcat(result, "/");
if(isChinese(token)) {
strncat(result, token, 3);
}else {
strncat(result, token, 1);
}
}
token = strtok(NULL, "/");
cntToken++;
}
if(token) {
strcat(result, "/");
strcat(result, token);
}

return result;
}

/*
清理命令资源,
不需要清理文件名字符串,
因为它作为指针指向原始命令字符串
*/

void CleanCommand(Command commands[]) {
commands->argc = 0;
commands->inputFile = NULL;
commands->outputFile = NULL;
commands->appendOutput = 0;
commands->hasPipe = 0;
}

/*
用来执行管道。
先设置好前置管道和当前管道,
在具有一定管道数目内,
执行for循环创建进程。
在子进程内,
设置好输入输出重定向。
之后执行进程。
在父进程内,
关闭前置进程,并且设置好当前进程。
由于当前进程下的管道属于同一个进程组,同时执行,
所以可以只记录第一个Pipepid。

*/

void execPipe(Command commands[], int cmdCount, int isback) {
int prePipe[2] = {-1, -1};// 分别为读端,写端
int currentPipe[2];// 分别为读端,写端
pid_t PipePids[MAX_PIPES];

for(int i = 0; i < cmdCount; ++i) {
if(i < cmdCount - 1) {
pipe(currentPipe);
}

switch (PipePids[i] = fork())
{
case -1:
perror("fork");
break;

case 0:
if(isback) {// 忽略ctrl + c 和 ctrl + \ 的信号
signal(SIGINT, SIG_IGN);
signal(SIGQUIT, SIG_IGN);
}

if(prePipe[0] != -1) {// 设置输入重定向
dup2(prePipe[0], STDIN_FILENO);
close(prePipe[0]);
close(prePipe[1]);
}

if(i < cmdCount - 1) {// 设置输出重定向
close(currentPipe[0]);
dup2(currentPipe[1], STDOUT_FILENO);
close(currentPipe[1]);
}

if(setRediraction(commands + i)) {
exit(1);
}

for(int fd = 3; fd < 1024; ++fd) {// 关闭了
if(fd != STDERR_FILENO && fd != STDIN_FILENO && fd != STDOUT_FILENO) {
close(fd);
}
}

char* execPath = SearchPath(commands[i].args[0]);
if(!execPath) {
fprintf(stderr, "shell: %s: 未找到命令\n", commands[i].args[0]);
exit(127);
}

extern char** environ;// 不可写成* environ[]的形式,这与_GNU_SOURCE中声明的冲突
if(execve(execPath, commands[i].args, environ) == -1) {
fprintf(stderr, "shell: %s: 执行失败\n", commands[i].args[0]);
exit(126);
}
break;

default:
if(prePipe[0] != -1) {// 关闭上一个管道的fd,否则不会结束。
close(prePipe[0]);
close(prePipe[1]);
}

if(i < cmdCount - 1) {// 保存当前管道
prePipe[0] = currentPipe[0];
prePipe[1] = currentPipe[1];
}
break;
}
}

if(isback) {
char cmd[256] = "";// 后台创建进程。
for(int i = 0; i < cmdCount; ++i) {
if(i > 0) {
strcat(cmd, "|");
}
strcat(cmd, commands[i].args[0]);
}
AddBgProcess(PipePids[0], cmd);
}else {
// 前台等待所有进程。
for(int i = 0; i < cmdCount; ++i) {
waitpid(PipePids[i], NULL, 0);
}
}
}

/*
用来针对管道设置重定向。
首先根据cmd结构体内的参数,
决定是否要进行重定向。
处理时要新开一个fd,
即获取到当前文件,
之后用dup2将重定向的宏,
指定到当前文件,并且关闭之前的文件描述符fd。
如果出错,返回-1,
正常则返回。
*/

int setRediraction(Command commands[]) {
if(commands->inputFile) {// 处理输入重定向
int fd = open(commands->inputFile, O_RDONLY);
if(fd < 0) {
fprintf(stderr, "shell: %s: 无法打开输入文件\n", commands->inputFile);
return -1;
}
dup2(fd, STDIN_FILENO);
close(fd);
}

if(commands->outputFile) {
int flags = O_WRONLY | O_CREAT;
if(commands->appendOutput) {
flags |= O_APPEND;
}else {
flags |= O_TRUNC;
}

int fd = open(commands->outputFile, flags, 0644);// 644 代表 所有者读写,所属组只读,其他用户只读
if(fd < 0) {
fprintf(stderr, "shell: %s: 无法打开输出文件\n", commands->outputFile);
return -1;
}
dup2(fd, STDOUT_FILENO);
close(fd);
}

return 0;
}

/*
用来处理命令参数中的管道。
先在一个for循环内记录非管道参数的数目。
之后根据这个数目,
创建一个for循环,
在数目内设置每个command结构体的参数。
先初始化好每个参数,
之后根据<,>,>>,分别对每个结构体cmd内进行标记。
如果if都被跳过了,则把当前参数标记好。
*/

int HandlePipe(Command commands[], char command[], char* args[], int* isback) {
int countNoPipe = 0;
int argIndex = 0;
CleanCommand(&commands[countNoPipe]);

while(args[argIndex]) {
if(strcmp(args[argIndex], "|") == 0) {//遇到管道则跳过处理
commands[countNoPipe].args[commands[countNoPipe].argc] = NULL;
countNoPipe++;
CleanCommand(&commands[countNoPipe]);
argIndex++;
continue;
}

// 处理参数成为管道,对每个管道开始设置标记,供后续函数进行识别
if(strcmp("<", args[argIndex]) == 0) {
if(args[argIndex + 1]) {
commands[countNoPipe].inputFile = args[++argIndex];
}
}else if(strcmp(">", args[argIndex]) == 0) {
if(args[argIndex + 1]) {
commands[countNoPipe].outputFile = args[++argIndex];
commands[countNoPipe].appendOutput = 0;
}
}else if(strcmp(">>", args[argIndex]) == 0) {
if(args[argIndex + 1]) {
commands[countNoPipe].outputFile = args[++argIndex];
commands[countNoPipe].appendOutput = 1;
}
}else {
commands[countNoPipe].args[commands[countNoPipe].argc++] = args[argIndex];
}
argIndex++;
}

commands[countNoPipe].args[commands[countNoPipe].argc] = NULL;
commands[countNoPipe].hasPipe = 0;
return countNoPipe + 1;// 返回命令数量
}

/*
用来移除已经结束的进程。
在while循环内作为检查的起始端。
在for循环中利用冒泡排序,
依次将整体移动,清除0位。
如果碰到了正在运行的进程则跳过,i++
否则进行for循环,并且减少bgpCount。
*/

void CheckBgProcess() {
int i = 0;
while(i < bgpCount) {
if(!bgProcess[i].isstillhere) {
for(int j = i; j < bgpCount - 1; j++) {
bgProcess[j] = bgProcess[j + 1];
}
bgpCount--;
}else {
i++;
}
}
}

/*
用来添加后台进程到后台进程结构体数组内。
如果当前后台进程数少于最大进程数,
则创建好后台进程,
并打印好创建信息。
*/

void AddBgProcess(pid_t pid, char* command) {
if(bgpCount < MAX_BGPROCESS) {
bgProcess[bgpCount].pid = pid;
bgProcess[bgpCount].isstillhere = 1;
memcpy(bgProcess[bgpCount].command, command, 255);
bgProcess[bgpCount].command[255] = '\0';

printf("[ %d ] %d\n", ++bgpCount, pid);// 打印后台进程数目,进程pid
}
}

/*
用来处理僵尸进程。
获取到当前进程的状态和pid,
在while循环内通过wait no hang(不挂起等待)的方式,
回收每个僵尸进程,
设置好回收状态。
并且提示给用户进程的回收状态。
*/

void SignalZombie(int sig) {
int status;
pid_t currentPid;

while((currentPid = waitpid(-1, &status, WNOHANG)) > 0) {
for(int i = 0; i < bgpCount; ++i) {
if(bgProcess[i].pid == currentPid && bgProcess[i].isstillhere) {
bgProcess[i].isstillhere = 0;// 设置为已回收
printf("\n[ %d ] %s 进程已回收\n", currentPid, bgProcess[i].command);
fflush(stdout);
break;
}
}
}
}


/*
用来进行路径搜索。
先获取到原本路径,
后对原本路径复制,用复制样本进行拆分,
把每个目录放成完整路径。
如果绝对路径正确,则返回绝对路径,
否则从环境变量里找到并返回完整路径。
如果什么都没找到,返回NULL。
*/

char* SearchPath(char* command) {
if(!command || *command == '\0') {
return NULL;
}

if(command[0] == '/' || command[0] == '.') {
if(access(command, F_OK) != 0) {
fprintf(stderr, "shell: %s: 没有那个文件或目录\n", command);
return NULL;
}
if(access(command, X_OK) != 0) {
fprintf(stderr, "shell: %s: 权限不够\n", command);
return NULL;
}
return command;
}

char* path = getenv("PATH");
if(!path) {
return NULL;
}

char *pathcopy = strdup(path);
char* dir = strtok(pathcopy, ":");
static char fullpath[MAX_PATH];

while(dir) {
snprintf(fullpath, sizeof(fullpath), "%s/%s", dir, command);

if(access(fullpath, F_OK) == 0) {
if(access(fullpath, X_OK) == 0) {
free(pathcopy);
return fullpath;
} else {
free(pathcopy);
return NULL;
}
}
dir = strtok(NULL, ":");
}
free(pathcopy);
fprintf(stderr, "shell: %s: 未找到命令\n", command);
return NULL;

}

/*
用来解析从用户获取到的命令行,
拆分成token放入args参数数组。
在while循环内拆分token,并逐个放入数组内。
*/

int ParseCommand(char* command, char* args[], int* isback) {
int cnt = 0, len = strlen(command);

*isback = 0;

// 处理冗余内容
char* start = command;
while(*start == ' ' || *start == '\t') start++;

char* end = command + len - 1;
while(end > start && (*end == ' ' || *end == '\t' || *end == '\n')) {
*end = '\0';
end--;
}

if(end >= start && *end == '&') {
*isback = 1;
*end = '\0';

end--;
while(end >= start && (*end == ' ' || *end == '\t')) {
*end = '\0';
end--;
}
}
// 处理冗余内容

if(*start == '\0') {
args[0] = NULL;
return 0;
}

char* token;
char* saveptr;
char* p = start;
int inQuote = 0;
char quoteChar = 0;

while(cnt < MAX_ARGS - 1 && *p) {
//除杂
while(*p == ' ' || *p == '\t') p++;
if(*p == '\0') break;

if(*p == '"' || *p == '\'') {
inQuote = 1;
quoteChar = *p;//确定为引号,供后续比较,确定区间
p++; // 跳过左引号
token = p;

while(*p) {
if(*p == quoteChar) {
// 如果是引号,检查前面是否是转义符
if(*(p-1) != '\\') {
break; // 找到未被转义的右引号
}
}
p++;
}

if(*p == quoteChar) {//找到右引号
*p = '\0';
args[cnt++] = token;
p++;
}
inQuote = 0;
} else {
// 普通参数
token = p;
while(*p && *p != ' ' && *p != '\t') p++;//除杂
if(*p) {
*p = '\0';
p++;
}
args[cnt++] = token;
}
}
args[cnt] = NULL;

return cnt;
}

/*
用来判断用户可能出现的错误。
用isError存储错误参数,
函数接受参数后执行对应错误码,给用户提示。
*/

void Error(int isError) {
switch (isError)
{
case 0:// 退出shell
printf("\n退出shell\n");
break;

case 2:// 未获取到环境变量
printf("\n未获取到环境变量...\n");
break;
default:
break;
}
}

/*
shell进入的欢迎界面。
用了2个字符串指针,之后在两层for循环中,打印界面。
最后执行shell函数,进入shell内部。
*/

void FirstShow() {
int time;
char flag = '#';
char* wl = "Welcome";
char* wl2 = "Shell";
for(time = 1; time <= 10; time++) {
for(int i = 0; i < 30; i++) {
printf("%c",flag);
if((i == 29)) {
printf("\n");
}
}
if(time == 10 / 2) {
for(int i = 0; i < 10; i++) {
printf("%c",flag);
}
printf("%s%s%s", COLOR_WELCOME, wl, COLOR_RESET);
for(int i = 0; i < 13; i++) {
printf("%c",flag);
if(i == 12) {
printf("\n");
}
}
for(int i = 0; i < 11; i++) {
printf("%c",flag);
}
printf("%s%s%s", COLOR_WELCOME, wl2, COLOR_RESET);
for(int i = 0; i < 14; i++) {
printf("%c",flag);
if(i == 13) {
printf("\n");
}
}
}
usleep(50000);
};
printf("\n");
Shell();
}

/*
shell的主体函数。
用command数组存储路径。
fork出子进程之后,把在子进程内部执行execve。
父进程等待子进程结束之后,继续保持shell状态,并且有Error错误判断。
*/

void Shell() {
char *args[MAX_ARGS];
char hostName[256];
char command[1024];
char currentPath[MAX_PATH];
char answer[10];
char* execpath = NULL;
pid_t pidChild;
int status, isback = 0;

while(1) {

static char prevPath[MAX_PATH] = "";

CheckBgProcess();
gethostname(hostName, 256);
if(getcwd(currentPath, MAX_PATH)) {

printf("%s@%s->%s%s%s%s ", COLOR_POINT, hostName, COLOR_RESET, COLOR_HIGHLIGHT, simpleCurrentPath(currentPath), COLOR_RESET);
}else {
printf("%s@%s->%s ", COLOR_POINT, hostName, COLOR_RESET);
}

fflush(stdout);

if(!fgets(command, sizeof(command), stdin)) {
if(feof(stdin)) {
printf("\n");
Error(0);
exit(EXIT_SUCCESS);
}
continue;
}

// 检查是否有未闭合的引号
int in_quote = 0;
char quote_char = 0;
size_t len = strlen(command);

// 检查当前行的引号状态
for(int i = 0; i < len; i++) {
if(command[i] == '"' || command[i] == '\'') {
if(!in_quote) {
in_quote = 1;
quote_char = command[i];
} else if(command[i] == quote_char && (i == 0 || command[i-1] != '\\')) {
in_quote = 0;
}
}
}

// 如果引号未闭合,继续读取更多行
while(in_quote) {
char more[1024];
fflush(stdout);

if(!fgets(more, sizeof(more), stdin)) {
break;
}

// 追加到 command
strncat(command, more, sizeof(command) - strlen(command) - 1);

// 重新检查引号状态
len = strlen(command);
in_quote = 0;
for(int i = 0; i < len; i++) {
if(command[i] == '"' || command[i] == '\'') {
if(!in_quote) {
in_quote = 1;
quote_char = command[i];
} else if(command[i] == quote_char && (i == 0 || command[i-1] != '\\')) {
in_quote = 0;
}
}
}
}

// 移除末尾的换行符
len = strlen(command);
if (len > 0 && command[len - 1] == '\n') {
command[len - 1] = '\0';
len--;
}

if(strcmp("exit", command) == 0 || strcmp("quit", command) == 0) {
if(bgpCount > 0) {
printf("当前后台还有 %d 个进程正在运行,是否要强行关闭? (y/n): ", bgpCount);
if(fgets(answer, sizeof(answer), stdin)) {
if(answer[0] != 'y' && answer[0] != 'Y') {
continue;
}
}
}
Error(0);
exit(EXIT_SUCCESS);
}

// 添加jobs命令,显示后台任务
if (strcmp("jobs", command) == 0) {
if (bgpCount == 0) {
printf("没有后台进程\n");
} else {
printf("后台进程列表:\n");
for (int i = 0; i < bgpCount; i++) {
printf("[%d] %d\t%s\t%s\n",
i + 1,
bgProcess[i].pid,
bgProcess[i].isstillhere ? "运行中" : "已完成",
bgProcess[i].command);
}
}
continue;
}
if(strncmp("cd", command, 2) == 0 && (command[2] == ' ' || command[2] == '\0')) {
ParseCommand(command, args, &isback);

if(args[1] == NULL || strcmp(args[1], "~") == 0) {
char* home = getenv("HOME");
if(!home) {
Error(2);
}else {
getcwd(prevPath, MAX_PATH);
if(chdir(home) != 0) {
fprintf(stderr, "cd: %s: 无法进入目录\n", home);
}
}
}
else if (strcmp(args[1], "-") == 0) {
if (prevPath[0] == '\0') {
getcwd(prevPath, MAX_PATH);
continue;
} else {
char tmpCurrentPath[MAX_PATH];
if (getcwd(tmpCurrentPath, MAX_PATH)) {
if(chdir(prevPath) == 0) {
printf("%s\n", prevPath);
strcpy(prevPath, tmpCurrentPath);
} else {
fprintf(stderr, "cd: %s: 无法进入目录\n", prevPath);
}
}
}
}else {
char targetPath[MAX_PATH];
if(args[1][0] == '/') {
strcpy(targetPath, args[1]);
}else {
if(getcwd(targetPath, MAX_PATH)) {
strcpy(prevPath, targetPath);
strcat(targetPath, "/");
strcat(targetPath, args[1]);
}
}
if(chdir(args[1]) != 0) {
fprintf(stderr, "cd: %s: 没有那个文件或目录\n", args[1]);
}
}
continue;
}

if(strchr(command, '|') != NULL || strchr(command, '>') != NULL || strchr(command, '<') != NULL) {
Command commands[MAX_PIPES];
ParseCommand(command, args, &isback);
int cmdCount = HandlePipe(commands, command, args, &isback);

if(cmdCount) {
execPipe(commands, cmdCount, isback);
}
continue;
}else {
ParseCommand(command, args, &isback);

if(args[0] == NULL) {
continue;
}

execpath = SearchPath(args[0]);

if(execpath == NULL) {
continue;
}

switch (pidChild = fork())
{
case -1:
perror("fork");
break;

case 0:
if (isback) {
signal(SIGINT, SIG_IGN);
signal(SIGQUIT, SIG_IGN);
}
extern char** environ;
if(execve(execpath, args, environ) == -1) {
fprintf(stderr, "shell: %s: 执行失败\n", args[0]);
exit(1);
}
break;
default:
if(isback) {
AddBgProcess(pidChild, command);
}else {
waitpid(pidChild, &status, 0);
}
break;
}
}
}
}