[root@localhost root]$ cat test.c
#include <stdio.h>
int main(int argc, char*argv[]){
system("/bin/sh");
}
[root@localhost root]$ cat auto
#!/usr/bin/env python
subprocess.Popen(['/root/test'])
我想使用子进程来执行新的 shell 命令行
但它立即关闭我不知道为什么..
我应该怎么做才能继续使用新的 shell 命令行?
如果有另一种方法来做同样的事情而不是子流程模块,请告诉我:)
对不起我糟糕的英语