如何在新终端中打开子进程(在 python 脚本中)并在 15 秒后终止它(平台:Ubuntu)
How to open a subprocess (within a python script) in new terminal and kill it after 15 seconds (Platform: Ubuntu)
我正在尝试从 python 脚本文件在新 window 中启动一个子进程 - 超时 15 秒然后终止该进程而不关闭主终端 window。
这是我目前所拥有的...
cmd=subprocess.Popen('file_name.sh')
subprocess.Popen('gnome terminal -c cmd')
time.sleep(15)
Popen.terminate(cmd)
试试这个:
import subprocess
import time
proc = subprocess.Popen(('gnome-terminal', '--', 'file_name.sh'))
time.sleep(15)
subprocess.Popen(('pkill', '-f', 'file_name.sh'))
我正在尝试从 python 脚本文件在新 window 中启动一个子进程 - 超时 15 秒然后终止该进程而不关闭主终端 window。
这是我目前所拥有的...
cmd=subprocess.Popen('file_name.sh')
subprocess.Popen('gnome terminal -c cmd')
time.sleep(15)
Popen.terminate(cmd)
试试这个:
import subprocess
import time
proc = subprocess.Popen(('gnome-terminal', '--', 'file_name.sh'))
time.sleep(15)
subprocess.Popen(('pkill', '-f', 'file_name.sh'))