Domande taggate «kill-process»


11
Come terminare un sottoprocesso di Python avviato con shell = True
Sto avviando un sottoprocesso con il seguente comando: p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) Tuttavia, quando provo a uccidere usando: p.terminate() o p.kill() Il comando continua a essere eseguito in background, quindi mi chiedevo come posso effettivamente terminare il processo. Si noti che quando eseguo il comando con: p = subprocess.Popen(cmd.split(), …



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.