在python脚本中终止正在运行的应用程序

时间:2017-07-25 02:45:18

标签: python

我正在编写一个简单的python脚本来运行和关闭一个-1应用程序。 我使用int[] count = new int[100]; for(int i=0;i<start.length;i++){ count[start[i]] += 1; count[end[i]] -= 1; } //form the count array with exact values in this loop count[0] = 0; for(int i =0;i<count.length;i++){ count[i] = count[i] + count[i-1]; } return max(count); 命令触发flatpak应用程序,但很难弄清楚如何从脚本本身退出应用程序。因为一旦应用程序启动,python脚本就会等待应用程序终止然后退出。

代码:

gedit

在上面的代码中,我尝试了flatpak,但它在等待应用程序终止时无效。

1 个答案:

答案 0 :(得分:2)

你可以试试这个

import subprocess
p = subprocess.Popen("flatpak run org.gnome.gedit/x86_64/stable")
p.terminate()

Here您可以找到有关此内容的更多信息