linux下实现自己的shell解释器

时间:2021-11-26 12:44:03

实现一个自己的shell解释器,其原理比较简单,首先获取用户的输入,通过fork()函数获取两个进程(父子进程),子进程通过execvp()函数继续进行,此时父进程一直在等待子进程的结束,待都结束了就执行了一次shell解释。

 /*============================================
> Copyright (C) 2014 All rights reserved.
> FileName:my_shell.c
> author:donald
> date:2014/08/21/ 16:08:03
> details:
==============================================*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <sys/types.h>
#define N 1024
#define ARR_SIZE 32
int save_to_arg(char line[N],char *arg[N]){
memset(arg,,sizeof(arg));
int head,tail;
char temp[ARR_SIZE];
int pos,index;
index = ;
head = ;
while(line[head] != '\0'){//分词
while(isspace(line[head]) && line[head] != '\0'){
head ++;
}
if(line[head] == '\0'){
break;
}
tail = head;
while( ! isspace(line[tail]) && line[tail] != '\0'){
tail ++;
} pos = ;
memset(temp,,ARR_SIZE);

       while(head != tail){//也可以用strncpy
temp[pos] = line[head];
head ++;
pos ++;
}
//temp[pos] = ' ' ;这里不用了,存入的是二维数组中,不用空格进行分词
arg[index] = (char*)calloc(,strlen(temp));//arg是一个指向字符数组的指针,必须申请空间
        //如果声明arg为一个二维数组就不用为其分配
strcpy(arg[index],temp); index ++;//!!!!!!!!!
}
arg[index] = NULL;
return index;
}
int main(int argc, const char *argv[])
{
int index,len;
char *arg[N];
char line[N];
while(memset(line,,N),printf(">>"),fflush(stdout),fgets(line,N,stdin) != NULL){//为什么用fflush?为了清理缓存
line[strlen(line)-] = '\0';
if(line[] == '\n'){
continue;
}
len = save_to_arg(line,arg); if(fork() == ){
if(execvp(arg[],arg) == -){
perror("error");
}
}else{
wait(NULL);
}
}
return ;
}
  • execvp()函数非正常退出将会返回 -1 ,通过获取其值,并对其加以判断,就可以实现在用户输入shell中没有的指令时出现提示消息。
  • 在键入ls时为了实现颜色,可以进行如下操作,eg:ls -l --color=auto.