繁体   English   中英

命令解析UNIX shell C

[英]Command parsing UNIX shell C

我试图创建一个程序,可以在其中解析用户输入的命令和参数到特定数组中(这些命令和参数将执行“ ls”,“ ls -l”,“ ls -l | wc”之类的命令,但是,我在解析时遇到问题:

        //Split the command and store each string in parameter[]
    cp = (strtok(command, hash));                      //Get the initial string (the command)
    parameter[0] = (char*) malloc(strlen(cp)+ 1);                     //Allocate some space to the first element in the array
    strncpy(parameter[0], cp, strlen(cp)+ 1);
    for(i = 1; i < MAX_ARG; i++)
    {
    cp = strtok(NULL, hash);                 //Check for each string in the array
    parameter[i] = (char*) malloc(strlen(cp)+ 1);
    strncpy(parameter[i], cp, strlen(cp)+ 1);                      //Store the result string in an indexed off array
        if(parameter[i]  == NULL)
        {
            break;
        }
    if(strcmp(parameter[i], "|") == 0)
    {
        cp = strtok(NULL, hash);
        parameter2[0] = (char*) malloc(strlen(cp)+ 1);
        strncpy(parameter2[0], cp, strlen(cp)+ 1);
        //Find the second set of commands and parameters
        for (j = 1; j < MAX_ARG; j++)
        {
            cp = strtok(NULL, hash);
            if (cp == NULL)
            {
                leave = 1;
                break;
            }
            else
            {
                parameter2[j] = (char*) malloc(strlen(cp)+ 1);
                strncpy(parameter2[j], cp, strlen(cp)+ 1);
            }

        }
    }
    if (leave == 1)
    {
        break;
    }
}

如果(strlen(cp)== NULL)出现分段错误,我就会遇到问题。 一旦所有输入都输入到数组中,我试图突破较大的for循环。 我可以成功地在数组中输入正确的字符串元素,但是一旦完成就无法退出循环。

如果找不到更多令牌, strtok可能会返回NULL指针。 因此,您必须在使用前检查cp值:

cp = strtok(NULL, hash);
if (cp != NULL)
{
    ........
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM