gpt4 book ai didi

将系统的使用更改为 C 中的 Fork 和 exec

转载 作者:行者123 更新时间:2023-11-30 16:00:17 25 4
gpt4 key购买 nike

我正在开发一个 C 程序,它需要一定数量的输入并将它们作为系统命令运行。其余部分将传递给 shell 执行。然而,有人建议我应该尝试使用 fork 和 exec 来运行命令。不过,我对如何实现这一目标感到困惑。

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#define MAX_BUFFER 1024 // max line buffer
#define MAX_ARGS 64 // max # args
#define SEPARATORS " \t\n" // token sparators

extern char **environ;
/*******************************************************************/

int main (int argc, char ** argv)
{
char linebuf[MAX_BUFFER]; // line buffer
char cmndbuf[MAX_BUFFER]; // command buffer
char * args[MAX_ARGS]; // pointers to arg strings
char ** arg; // working pointer thru args
char * prompt = "==>" ; // shell prompt

// keep reading input until "quit" command or eof of redirected input

while (!feof(stdin)) {

// get command line from input


fputs (prompt, stdout); // write prompt
fflush(stdout);
if (fgets(linebuf, MAX_BUFFER, stdin )) { // read a line

// tokenize the input into args array

arg = args;
*arg++ = strtok(linebuf,SEPARATORS); // tokenize input
while ((*arg++ = strtok(NULL,SEPARATORS)));
// last entry will be NULL

if (args[0]) { // if there's anything there

cmndbuf[0] = 0; // set zero-length command string

// check for internal/external command

if (!strcmp(args[0],"clr")) { // "clr" command
strcpy(cmndbuf, "clear");
} else
if (!strcmp(args[0],"cd"))
{
int ret;
if (!args[1])
strcpy(cmndbuf, "pwd");
ret = chdir(args[1]);
strcpy(cmndbuf, "pwd");


}else
if (!strcmp(args[0],"dir")) { // "dir" command
strcpy(cmndbuf, "ls -al ");
if (!args[1])
args[1] = "."; // if no arg set current directory
strcat(cmndbuf, args[1]);
} else
if (!strcmp(args[0],"environ")) { // "environ" command
char ** envstr = environ;
while (*envstr) { // print out environment
printf("%s\n",*envstr);
envstr++;
} // (no entry in cmndbuf)
} else
if (!strcmp(args[0],"quit")) { // "quit" command
break;
} else { // pass command on to OS shell
int i = 1;
strcpy(cmndbuf, args[0]);
while (args[i]) {
strcat(cmndbuf, " ");
strcat(cmndbuf, args[i++]);
}
}

// pass any command onto OS

if (cmndbuf[0])
system(cmndbuf);
}
}
}
return 0;
}

最佳答案

我假设您有一个 POSIX 系统,例如 GNU/Linux。

这是一个很常见的问题。第一个答案是研究免费 C 库(如 GNU Libc)中 system 函数的实现。 。许多关于 Unix 的好书也讨论了这个问题。

作为线索,systemfork-ing 一起使用,然后在 shell /bin/的子进程 execve 中工作嘘

关于将系统的使用更改为 C 中的 Fork 和 exec,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7878219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com