- 论坛徽章:
- 0
|
不管运行什么命令都会出现如下提示:
Segmentation fault: 11 (core dumped)
请各位帮忙看看
源码如下:
/*shell.c*/
#include <unistd.h>
#include <stdio.h>
void main (void)
{
char command1,command2;
printf("shell>");
while(1){
get_input(command1,command2);
if(strcmp(command1,"logout")==0)
exit(0);
if(strcmp(command1,"help")==0)
help();
if(strcmp(command1,"cd")==0)
if(chdir(command2)==-1)
perror("chdir error");
else my_pwd();
if(strcmp(command1,"pwd")==0)
my_pwd();
}
}
/*get_input.c*/
#include<stdio.h>
#define BUFSIZE 30
char get_input(char command1,char command2)
{
int ch;
int len1=0,len2=0;
char buf1[BUFSIZE],buf2[BUFSIZE];
ch=getchar();
while(len1<BUFSIZE&&ch!=' '&&ch!='t'&&ch!='n'){
buf1[len1++]=ch;
ch=getchar();
}
if(ch=='t'|ch==' '){
command1=buf1[len1];
len1++;
ch=getchar();
while(len1<BUFSIZE&&ch!='n'){
buf2[len2++]=ch;
len1++;
}
command2=buf2[len2];}
if(len1==BUFSIZE)
printf("command is too long n");
if(ch=='n')
return EOF;
}
/*help.c*/
#include <stdio.h>
void help()
{
printf("cdn,helpn,logoutn,pidn,pwdn");
}
/*my_pwd.c*/
#include <stdio.h>
#include <unistd.h>
#define VERYBIG 200
void my_pwd(void)
{
char dirname[VERYBIG];
if(getcwd(dirname,VERYBIG)==NULL)
perror("getcwd error");
else
printf("%sn",dirname);
} |
|