Lines Matching defs:shell
108 char *shell;
110 if ((shell = getenv("SHELL")) == NULL)
111 shell = _PATH_BSHELL;
146 argv[0] = shell;
190 char *shell;
192 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
193 shell = _PATH_BSHELL;
229 argv[0] = shell;
1659 char *shell;
1668 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
1669 shell = _PATH_BSHELL;
1675 debug3("Executing %s -c \"%s\"", shell, args);
1676 execl(shell, shell, "-c", args, (char *)NULL);
1678 shell, args, strerror(errno));