-
-
Save AddaxSoft/6402dead0d54ac713607 to your computer and use it in GitHub Desktop.
Typo correction SELL_PATH => SHELL_PATH
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define SHELL_PATH "/bin/sh" /* Path of the shell. */ | |
#define SHELL_NAME "sh" /* Name to give it. */ | |
static int do_system(const char *line) | |
{ | |
if (fork() == 0) { | |
const char *new_argv[4]; | |
new_argv[0] = SHELL_NAME; | |
new_argv[1] = "-c"; | |
new_argv[2] = line; | |
new_argv[3] = NULL; | |
execve(SHELL_PATH, (char *const *) new_argv, __environ); | |
} else { | |
// wait on child | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment