我目前正在编写一个 shell,由于某种原因,我无法让我的 printenv 函数工作。当没有给出命令时,它会起作用。当给出两个参数时,它也有效。但是,当给出一个参数时,它不起作用并且什么也不打印。
代码如下:
else if (strcmp(args[0], "printenv")==0){
/* Previously: if (args[1] == NULL && args[0] != NULL){ */
if (argc == 1){
int i = 0;
while (envp[i] != NULL){
printf("%s\n", envp[i++]);
}
}
/* Previously: else if (args[2] == NULL && args[1] != NULL){ */
else if (argc == 2){
char *env;
while (args[1] = *argv++){
env = getenv(args[1]);
if (env != NULL){
printf("%s", env);
}
}
free(env);
}
else {
fprintf(stderr, "%s: Too many arguments\n", args[0]);
}
}