似乎有很多关于 SO 的问题很接近,但不是我想要的。我正在尝试查看是否有办法使用我的主程序中的线程/子进程打开一个新的终端窗口(Linux),并让该线程/子进程拥有新窗口。
只是对完整目标的概述:我将有一个主程序,我将启动stdin
它并通过用户(标准输入/标准输出)。
所以我想做的是让主程序调用线程,让线程使用/拥有新的终端窗口,然后在线程消失并死亡时关闭该窗口。
我知道这段代码不能正常工作,但从概念上讲,我想要这样的东西:
void * Runit()
{
system("gnome-terminal"); //Would like to get a handle to this window
while(1)
printf("I'm the thread!!!\n"); //Would like to get this printed to the new window
}
int main()
{
pthread_t child;
pthread_create(&child, NULL, Runit, NULL);
sleep(10);
return 0; //Would like the child & its window to go away now.
}
对此的要求是宽松的,它不必是可移植的,这只是一个让我的生活更轻松的 Linux 小工具。它确实必须是 C 代码,因此除非该脚本可以从 C 运行,否则不要编写 shell 脚本。任何帮助甚至其他想法都将受到赞赏。
编辑:
我知道在 linux 终端中有文件句柄/dev/pts/x
,我尝试过如下代码:
system("gnome-terminal");
sleep(2); //let the file handle show up in /dev/pts
fp = fopen("/dev/pts/<new file handler number>");
fprintf(fp, "echo hi");
手柄正确打开,但终端中不显示任何内容。