有没有办法隐藏使用python代码启动的新进程?

时间:2017-07-08 14:56:25

标签: python c++

我有一个python脚本:

my_script.py
=================
import os
os.system('./a.out') # or subprocess or anything that runs another program.
=================

可执行文件(用C / C ++编写):

a.out

当我运行python3 my_script.py时,我看到正在运行的两个流程a.outpython3

993  user1     20   0 20.265g 358096 143576 S  60.1  0.3   0:01.81 python3
1056 user1     20   0    4360    664    588 R   2.0  0.0   0:00.06 a.out

有没有办法将a.out封装在python3中并仅显示python3

0 个答案:

没有答案