在bash
我会简单地使用exec -a
.我怎样才能在 busybox 中做到这一点?是否有可能,或者我必须编写自己的 C 程序才能exec(3)
直接调用?
答案1
你有什么版本的busybox?根据https://git.busybox.net/busybox/tree/shell/ash.c如果一个人深入研究exec
可能会在第 9352 行左右遇到以下代码,它似乎支持exec [-a customname] ...
execcmd(int argc UNUSED_PARAM, char **argv)
{
optionarg = NULL;
while (nextopt("a:") != '\0')
/* nextopt() sets optionarg to "-a ARGV0" */;
argv = argptr;
if (argv[0]) {
char *prog;
iflag = 0; /* exit on error */
mflag = 0;
optschanged();
/* We should set up signals for "exec CMD"
* the same way as for "CMD" without "exec".
* But optschanged->setinteractive->setsignal
* still thought we are a root shell. Therefore, for example,
* SIGQUIT is still set to IGN. Fix it:
*/
shlvl++;
setsignal(SIGQUIT);
/*setsignal(SIGTERM); - unnecessary because of iflag=0 */
/*setsignal(SIGTSTP); - unnecessary because of mflag=0 */
/*setsignal(SIGTTOU); - unnecessary because of mflag=0 */
prog = argv[0];
if (optionarg)
argv[0] = optionarg;
shellexec(prog, argv, pathval(), 0);
答案2
exec -a
从 Busybox 1.27 开始支持,另请参阅以下问题的答案是否有 POSIX 方法来设置目标应用程序的第 0 个参数?了解如何以其他方式实现这一目标。