以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define MAX_LINE 80 /* Max command length */
int main(void)
{
char fullCmd[MAX_LINE-1];
const char *EXIT_CMD = "exit"; /* command to exit shell */
int should_run = 1; /* flag to determine when to exit*/
while (should_run)
{
printf("daw.0>");
fflush(stdout);
scanf("%s", fullCmd);
if (strcmp(fullCmd, EXIT_CMD) == 0)
{
should_run = 0;
}
}
return 0;
}
结果在提示符(daw.0&gt;)中反复打印出来(单词数量 - 1次)。例如,我输入“大家好,你好吗?”,可以看到以下输出:
daw.0>Hello there everyone, how are you?
daw.0>
daw.0>
daw.0>
daw.0>
daw.0>
daw.0>
我不明白为什么。我还需要做很多工作才能为作业创建一个shell,但我甚至无法让最简单的变体可靠地工作。我在Virtual Box中使用了Debian Linux版本。