gpt4 book ai didi

c - execve 在 linux 上,从参数执行

转载 作者:太空宇宙 更新时间:2023-11-04 10:21:10 24 4
gpt4 key购买 nike

我需要创建一个程序,允许用户在 Linux 中使用 execve 执行作为参数传递的命令。我不确定 execve 命令的语法。我编写了该程序,但它不适用于多个参数,而且我不明白为什么。

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>
int main(int argc, char **argv)
{
int status;
pid_t pid;
if((pid = fork())>0)
{
///Father process
wait(&status);
printf("Process terminated with status = %d\n",status);
}
else
{
///son process
int i;
char param[100];

printf("I'm the son woth PID= %d\n",getpid());
printf("%s\n",argv[0]);
printf("%s\n",argv[1]);
printf("%s\n",argv[2]);
strcpy(param,"/bin/");
strcat(param,argv[1]);

execve(param,argv,NULL);
exit(-1);
}


return 0;
}

使用此代码无效的命令是

cp file1.txt file2.txt

有人可以帮助我吗?

最佳答案

此版本已更正:

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>
int main(int argc, char **argv)
{
int status;
pid_t pid;
if((pid = fork())>0)
{
///Father process
wait(&status);
printf("Process terminated with status = %d\n",status);
}
else
{
///son process
int i;
char program[100];

printf("I'm the son woth PID= %d\n",getpid());
strcpy(program,argv[1]);

printf("Program: %s\n", program);

execve(program, argv+1, NULL);
exit(0);
}


return 0;
}

例子:

$ ./a.out /bin/cp a.txt b.txt
I'm the son woth PID= 1590
Program: /bin/cp
/bin/cp
a.txt
b.txt
Process terminated with status = 0

示例 2:

./a.out /bin/ls
I'm the son woth PID= 3021
Program: /bin/ls
/bin/ls
a.c a.out
Process terminated with status = 0

我添加了 #include <unistd.h>因为我需要它。

我建议你多做printf以便了解和排除故障。

编辑 正如@jonathan-leffler 所说,您可以使用 execvp 来执行使用 PATH 的程序:

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>
int main(int argc, char **argv)
{
int status;
pid_t pid;
if((pid = fork())>0)
{
///Father process
wait(&status);
printf("Process terminated with status = %d\n",status);
}
else
{
///son process
int i;
char program[100];

printf("I'm the son woth PID= %d\n",getpid());
strcpy(program,argv[1]);

printf("Program: %s\n", program);

execvp(program, argv+1);
exit(0);
}


return 0;
}

例子:

▶ ./a.out ls
I'm the son woth PID= 5056
Program: ls
a.c a.out
Process terminated with status = 0

关于c - execve 在 linux 上,从参数执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43837230/

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