Home | History | Annotate | Download | only in pending

Lines Matching defs:shell

70 static void run_shell(char *shell) 
72 snprintf(toybuf,sizeof(toybuf), "-%s", shell);
73 execl(shell, toybuf, NULL);
74 error_exit("Failed to spawn shell");
84 "LD_AOUT_PRELOAD", "LD_NOWARN", "LD_KEEPDIR", "SHELL", NULL
86 char *shell = NULL, *pass = NULL, **temp = forbid;
115 if ((shell = getenv("SUSHELL")) || (shell = getenv("sushell"))
116 || (shell = pwd->pw_shell))
117 run_shell((shell && *shell)? shell: "/bin/sh");