这是我的代码,当只有一个单词没有空格或其他任何内容时(如输入...),系统调用有效。
例如,当我使用" pwd"通话有效,但当我使用像ls -l
这样的东西时,或者说" cd file1 file2"它会删除第一个字符,并且不会考虑空格后的任何内容。
所以当我写" cd file1 file2"只有" d" " cd"离开了。我该怎么做才能防止这种情况发生?
#include <stdlib.h>
#include <stdio.h>
#include "Expert_mode.h"
void Expert_mode()
{
printf("Your are now in Expert mode, You are using a basic Shell (good luck) \nWe added the commands 'read_history', 'leave' and 'Easter_egg'. \n");
int a = 0;
while(a == 0)
{
char* line;
getchar();
printf("Choose a command : \n");
line = malloc(100*sizeof(char));
fgets(line, 100, stdin);
if(strcoll(line, "leave") == 0)
{
a = 1;
}
else if(strcoll(line, "read_history") == 0)
{
//read_history();
}
else if(strcoll(line, "Easter_egg") == 0)
{
// Easter_egg();
}
else
{
system(line);
}
}
}