我正在用C编写一个小的linux shell,并且非常接近完成。我从用户处接收命令并将其存储在 args 中,由空格分隔。在下面的示例中,假设args包含以下内容:
args[] = {"ls", "-l", "|", "wc"};
我的功能包含 args ,并且还包含了多少管道。我尽可能地评论了我的代码。这是:
int do_command(char **args, int pipes) {
// The number of commands to run
const int commands = pipes + 1;
int i = 0;
int pipefds[2*pipes];
for(i = 0; i < pipes; i++){
if(pipe(pipefds + i*2) < 0) {
perror("Couldn't Pipe");
exit(EXIT_FAILURE);
}
}
int pid;
int status;
int j = 0;
int k = 0;
int s = 1;
int place;
int commandStarts[10];
commandStarts[0] = 0;
// This loop sets all of the pipes to NULL
// And creates an array of where the next
// Command starts
while (args[k] != NULL){
if(!strcmp(args[k], "|")){
args[k] = NULL;
// printf("args[%d] is now NULL", k);
commandStarts[s] = k+1;
s++;
}
k++;
}
for (i = 0; i < commands; ++i) {
// place is where in args the program should
// start running when it gets to the execution
// command
place = commandStarts[i];
pid = fork();
if(pid == 0) {
//if not last command
if(i < pipes){
if(dup2(pipefds[j + 1], 1) < 0){
perror("dup2");
exit(EXIT_FAILURE);
}
}
//if not first command&& j!= 2*pipes
if(j != 0 ){
if(dup2(pipefds[j-2], 0) < 0){
perror("dup2");
exit(EXIT_FAILURE);
}
}
int q;
for(q = 0; q < 2*pipes; q++){
close(pipefds[q]);
}
// The commands are executed here,
// but it must be doing it a bit wrong
if( execvp(args[place], args) < 0 ){
perror(*args);
exit(EXIT_FAILURE);
}
}
else if(pid < 0){
perror("error");
exit(EXIT_FAILURE);
}
j+=2;
}
for(i = 0; i < 2 * pipes; i++){
close(pipefds[i]);
}
for(i = 0; i < pipes + 1; i++){
wait(&status);
}
}
我的问题是,当程序有点正确执行时,它表现得很奇怪,我希望你可以帮助我。
例如,我跑 ls | wc ,输出是 ls |的输出wc ,但是它也会在它下方输出一个简单的 ls 输出,即使它只是输出的 wc 。
另一个例子,当我尝试 ls -l |时wc ,显示 wc 的第一个数字,但 ls -l </ strong>的输出显示在它下方,即使它应该只是 wc 的输出。
提前致谢! :)
答案 0 :(得分:8)
好的,我发现了一个小错误。此
if( execvp(args[place], args) < 0 ){
应该是
if( execvp(args[place], args+place) < 0 ){
您的版本使用args作为所有其他命令的第一个命令。除此之外,它对我有用。