-3

C で exec プロセスをプログラミングする方法についてお聞きしたいです。

私のコードは入力から値を割り当てるのが間違っているので、私のコードを見て、コードの何が間違っているのか教えていただけますか。

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <string.h>

int main(){

  int pid;
  int status, i = 0;
  char input[256], path[30];
  const char* a[10];
  char* token;
  char* split = " ";

  while(input != "exit"){
    printf("Please type your command:\n");
    fgets(input, 256, stdin); /* emxape: ls -alf    argv[0] = "ls" argv[1] = -alf*/
    printf("Input: %s", input);
    i = 0;
    token = strdup(strtok(input,split));

while(token != NULL){
  a[i] = token;
  token = strdup(strtok(NULL,split));
  printf("a%d is %s\n", i, a[i]);
  i++;
}

int j = 0;
while( j < sizeof(a))
  {
    printf("%s", a[j]);
    j++;
  }

//free(copy);



if(strcmp(a[0],"cd")== 0 )/*for compare pointer*/
{
  if (chdir((a[1])) == 0) {
    printf("Sucess change Directory.\n");
    return 0;
  }
  else {
    printf("Fault change Directroy\n");
    perror("");
  }

  if (a[1] == NULL)
    {
      if(chdir(getenv("HOME"))<<0)
        perror("cd");
      return 0;
    }
  else
    {
      if(chdir(a[1]) <0)
        perror("cd");
    }



}

sprintf(path,"%s",a[0]);

pid = fork();

/*Child process*/
if(pid == 0){
   //execl(path,a[0],a[1],NULL);
   execl(a[0],a[1],a[2],NULL);
   printf("Wrong child process: %s",path);
   exit(0);
  }

  /*Parents Process*/
   else {
    wait(&status);
   }
  }//while
   printf("Thank you.");
 }/*main*/
4

1 に答える 1

1

少なくとも2つの問題があります

  1. 26行目: token = strdup(strtok(NULL,split)); あるべきtoken = strdup(strtok(input,split));

  2. 最初の変更後、24 行目のループを実行できます。それでも正しく動作しません。のようでstrtok()strdup()正しく動作しません。

于 2013-03-12T08:40:42.393 に答える