我为linux制作了一个简单的shell。它使用 getline() 逐行读取,直到将 ctrl+d (eof/-1) 输入到标准输入中。
在像这样逐行输入标准输入时:
ls -al &
ls -a -l
我的外壳工作得很好。
我试图通过我的 shell 运行脚本,但它不起作用。当我执行脚本时,我的 shell 会自动执行(第一行),但 shell 不会解释其他行。
#!/home/arbuz/Patryk/projekt/a.out
ls -al &
ls -a -l
什么可能导致它?我不得不说我是 linuxes 的初学者,老师没有对所有这些东西说任何话。只是一个家庭作业。我做了一些研究,但这就是我发现的全部。
这是我的Shell的代码。我已将 shell 路径添加到 etc/shells 但它仍然无法正常工作
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdbool.h>
int main()
{
ssize_t bufer_size = 0;
char* line = NULL;
int line_size;
while ((line_size = getline(&line, &bufer_size, stdin)) != -1) // while end of file
{
char** words_array;
words_array = (char**)malloc(200 * sizeof(char*));
int words_count = 0;
int i;
int j = 0;
int words_length = 0;
char word[100];
for (i = 0; i < line_size; i++)
{
if (line[i] == ' ' || line[i] == '\n')
{
words_array[words_count] = (char*)malloc(words_length * sizeof(char));
int b;
for (b = 0; b < words_length; b++)
{
words_array[words_count][b] = word[b];
}
j = 0;
words_count++;
words_length = 0;
}
else
{
word[j] = line[i];
j++;
words_length++;
}
}
bool run_in_background = false;
if (words_array[words_count - 1][0] == '&')
{
run_in_background = true;
words_array[words_count - 1] = NULL;
}
int a = fork();
if (a == 0) // child process
{
execvp(words_array[0], words_array);
}
else // parent process
{
if (run_in_background == true)
{
printf("\n ---- running in background. \n");
}
else
{
printf("\n ---- running normal \n");
wait(NULL);
}
}
}
return 0;
}