我想知道如何通过execl调用Xterm。例如,对于以下代码
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/types.h>
#include "util.h"
#define XTERM_PATH "/usr/bin/xterm"
#define XTERM "xterm"
int main() {
int exStatus;
pid_t childpid;
childpid = fork();
if ( childpid == -1 ) {
perror( "Failed to fork" );
exit( 0 );
}
if ( childpid == 0 ) { // Child process
exStatus = execl( XTERM_PATH, XTERM, "+hold", "-e", "./shi", "shi", (char *)NULL );
if ( exStatus == -1 ) {
perror( "Failed to execute shell" );
exit( 0 );
}
}
else {
wait(NULL);
}
return 0;
}
shi只是一个简单的程序,将HelloWorld打印到屏幕上。在我运行该程序后,Xterm没有显示出来。我想知道出了什么问题。
答案 0 :(得分:2)
如果您对最近的-hold
版本使用 +hold
(非 xterm
),那么您的程序确实在当前目录(由 "./shi"
表示),然后会显示一个xterm。