“Cara Menghentikan Subprocess.Call dalam Python” Kode Jawaban

Hentikan subproses ularung

import os
import signal
import subprocess

# The os.setsid() is passed in the argument preexec_fn so
# it's run after the fork() and before  exec() to run the shell.
pro = subprocess.Popen(cmd, stdout=subprocess.PIPE, 
                       shell=True, preexec_fn=os.setsid) 

os.killpg(os.getpgid(pro.pid), signal.SIGTERM)  # Send the signal to all the process groups
Blue Barracuda

Cara Menghentikan Subprocess.Call dalam Python

import os
import signal
import subprocess

# The os.setsid() is passed in the argument preexec_fn so
# it's run after the fork() and before  exec() to run the shell.
pro = subprocess.Popen(cmd, stdout=subprocess.PIPE, 
                       shell=True, preexec_fn=os.setsid) 

os.killpg(os.getpgid(pro.pid), signal.SIGTERM)  # Send the signal to all the process groups
Uptight Unicorn

Jawaban yang mirip dengan “Cara Menghentikan Subprocess.Call dalam Python”

Pertanyaan yang mirip dengan “Cara Menghentikan Subprocess.Call dalam Python”

Lebih banyak jawaban terkait untuk “Cara Menghentikan Subprocess.Call dalam Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya